summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndy McCurdy <andy@andymccurdy.com>2015-01-03 19:21:32 -0500
committerAndy McCurdy <andy@andymccurdy.com>2015-01-03 19:21:32 -0500
commitcee81bd7ea1c4c5f00ac91b8d70b10eccd31dd0c (patch)
tree865aea1e1cbed593a6b3e4861fe5491264064e37
parentc4a21d53419dac4ef4cec81933ada70055757525 (diff)
parent76bc4ec5f916732fcf1dc38cdd79f10f77e22dd4 (diff)
downloadredis-py-cee81bd7ea1c4c5f00ac91b8d70b10eccd31dd0c.tar.gz
Merge pull request #547 from msabramo/escape_asterisks
Escape 2 asterisks in README.rst
-rw-r--r--README.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.rst b/README.rst
index 526abce..6caf203 100644
--- a/README.rst
+++ b/README.rst
@@ -68,7 +68,7 @@ to the official command syntax. There are a few exceptions:
`this comment on issue #151
<https://github.com/andymccurdy/redis-py/issues/151#issuecomment-1545015>`_
for details).
-* **SCAN/SSCAN/HSCAN/ZSCAN**: The *SCAN commands are implemented as they
+* **SCAN/SSCAN/HSCAN/ZSCAN**: The \*SCAN commands are implemented as they
exist in the Redis documentation. In addition, each command has an equivilant
iterator method. These are purely for convenience so the user doesn't have
to keep track of the cursor while iterating. Use the
@@ -643,7 +643,7 @@ See `Guidelines for Redis clients with support for Redis Sentinel
Scan Iterators
^^^^^^^^^^^^^^
-The *SCAN commands introduced in Redis 2.8 can be cumbersome to use. While
+The \*SCAN commands introduced in Redis 2.8 can be cumbersome to use. While
these commands are fully supported, redis-py also exposes the following methods
that return Python iterators for convenience: `scan_iter`, `hscan_iter`,
`sscan_iter` and `zscan_iter`.