Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
kei500 committed Apr 29, 2015
1 parent 33215e1 commit dd5dae5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# CacheLocal
[![Gem Version](https://badge.fury.io/rb/cache_local.png)](http://badge.fury.io/rb/cache_local)
CacheLocal provides very simple cache function. There are two types of chache: file cache and process cache.
CacheLocal provides very simple cache function. There are two types of cache: file cache and process cache.

## Installation

Expand All @@ -23,7 +23,7 @@ require 'cache_local'

file_cache = CacheLocal::File.new(path_to_cache_directory, namespace)
file_cache.set(key, value)
file_cache.get(key
file_cache.get(key)
file_cache.delete(key)
file_cache.set(key, value, expiration_time) # enable to specify expiration time [sec]
```
Expand Down

0 comments on commit dd5dae5

Please sign in to comment.