Skip to content

Commit 403dfaf

Browse files
committed
fix typo
1 parent 8a41714 commit 403dfaf

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Diff for: README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ BloomFilter is cleared automatically when requests count == size.
249249
## Cache Storage
250250

251251
#### Local Storage
252-
Local storage uses dictionary to store data. A policy is used to evicte keys when cache is full.
252+
Local storage uses dictionary to store data. A policy is used to evict keys when cache is full.
253253
```python
254254
# lru policy
255255
Storage(url="local://lru", size=10000)
@@ -264,7 +264,7 @@ Parameters:
264264
- `lru`
265265
- `tlfu`: TinyLfu policy, see https://arxiv.org/pdf/1512.00727.pdf
266266

267-
- `size`: size of the storage. Policy will be used to evicte key when cache is full.
267+
- `size`: size of the storage. Policy will be used to evict key when cache is full.
268268

269269
#### Redis Storage
270270
```python

Diff for: README_ZH.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ Parameters:
255255
- `lru`
256256
- `tlfu`: TinyLfu policy, see https://arxiv.org/pdf/1512.00727.pdf
257257

258-
- `size`: size of the storage. Policy will be used to evicte key when cache is full.
258+
- `size`: size of the storage. Policy will be used to evict key when cache is full.
259259

260260
#### Redis Storage
261261
```python

0 commit comments

Comments
 (0)