aboutsummaryrefslogtreecommitdiff
path: root/README.rst
diff options
context:
space:
mode:
authorThomas Kemmer <tkemmer@computer.org>2014-06-16 20:42:08 +0200
committerThomas Kemmer <tkemmer@computer.org>2014-06-16 20:42:08 +0200
commite9a8c86562341f1321215aa86d2f1db06e388bc5 (patch)
tree1f5620494ac7bbd9e24c6e41d21d09622b82719f /README.rst
parentb210c14c7fb336205625be8d29ece52c2fba6abe (diff)
downloadcachetools-e9a8c86562341f1321215aa86d2f1db06e388bc5.tar.gz
Remove Sphinx markup
Diffstat (limited to 'README.rst')
-rw-r--r--README.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/README.rst b/README.rst
index af046ed..25d3381 100644
--- a/README.rst
+++ b/README.rst
@@ -27,10 +27,10 @@ of the cache exceeds its maximum size, the cache must choose which
item(s) to discard based on a suitable `cache algorithm`_.
In general, a cache's size is the sum of the size of its items. If
-the size of each items is :const:`1`, a cache's size is equal to the
-number of its items, i.e. :func:`len`. An items's size may also be a
-property or function of its value, e.g. the result of
-:func:`sys.getsizeof`, or :func:`len` for string and sequence values.
+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.
This module provides various cache implementations based on different
cache algorithms, as well as decorators for easily memoizing function