summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAshik Shezan <ashikshezan@gmail.com>2022-10-25 21:14:06 +0600
committerGitHub <noreply@github.com>2022-10-25 18:14:06 +0300
commit9d70719840d9831ea40904a36038fcd0e3fdff65 (patch)
treee92cf96dcfd8c268a75c64b19ca1ed30ed1992ad
parent1c2461d82b2987aca583a59a42b4568da2648b17 (diff)
downloadredis-py-9d70719840d9831ea40904a36038fcd0e3fdff65.tar.gz
doc: redismodules.rst fix (#2429)
Parentheses were not closed Co-authored-by: dvora-h <67596500+dvora-h@users.noreply.github.com>
-rw-r--r--docs/redismodules.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/redismodules.rst b/docs/redismodules.rst
index 86a323a..cf31b29 100644
--- a/docs/redismodules.rst
+++ b/docs/redismodules.rst
@@ -91,7 +91,7 @@ These are the commands for interacting with the `RedisJSON module <https://redis
import redis
r = redis.Redis()
- r.json().set("mykey", ".", {"hello": "world", "i am": ["a", "json", "object!"]}
+ r.json().set("mykey", ".", {"hello": "world", "i am": ["a", "json", "object!"]})
Examples of how to combine search and json can be found `here <examples/search_json_examples.html>`_.