aboutsummaryrefslogtreecommitdiff
path: root/README.rst
diff options
context:
space:
mode:
authorThomas Kemmer <tkemmer@computer.org>2014-06-16 20:43:49 +0200
committerThomas Kemmer <tkemmer@computer.org>2014-06-16 20:43:49 +0200
commit6a6e50bd1a51f2cd52ea94fa4f71dc8ba2a30572 (patch)
treeb48440a99d92e4e380b3e4c81c908ef22aad5f81 /README.rst
parente78228cf488219044e71f98de630a0b07e35b293 (diff)
downloadcachetools-6a6e50bd1a51f2cd52ea94fa4f71dc8ba2a30572.tar.gz
Remove Sphinx markup
Diffstat (limited to 'README.rst')
-rw-r--r--README.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.rst b/README.rst
index 85b3596..ef6358c 100644
--- a/README.rst
+++ b/README.rst
@@ -30,7 +30,7 @@ In general, a cache's size is the sum of the size of its items. If
the size of each items is ``1``, a cache's size is equal to the number
of its items, i.e. ``len()``. An items's size may also be a property
or function of its value, e.g. the result of ``sys.getsizeof()``, or
-``len`` for string and sequence values.
+``len()`` for string and sequence values.
This module provides various cache implementations based on different
cache algorithms, as well as decorators for easily memoizing function