diff --git a/README.md b/README.md index 74aa6a5..c86b68a 100644 --- a/README.md +++ b/README.md @@ -77,7 +77,7 @@ cache.StartJanitor() | Set | Same as `SetWithTTL`, but using the default TTL (which is `gocache.NoExpiration`, unless configured otherwise). | | SetWithTTL | Creates or updates a cache entry with the given key, value and expiration time. If the max size after the aforementioned operation is above the configured max size, the tail will be evicted. Depending on the eviction policy, the tail is defined as the oldest | | SetAll | Same as `Set`, but in bulk. | -| SetAllWithTTL | Same as `SetWithTTL`, but with a TTL. | +| SetAllWithTTL | Same as `SetWithTTL`, but in bulk. | | Get | Gets a cache entry by its key. | | GetByKeys | Gets a map of entries by their keys. The resulting map will contain all keys, even if some of the keys in the slice passed as parameter were not present in the cache. | | GetAll | Gets all cache entries. |