summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNathaniel Blakely <vanish172@gmail.com>2022-08-21 03:04:23 -0700
committerGitHub <noreply@github.com>2022-08-21 13:04:23 +0300
commitfde03fbd45981c204908fe2a82999acf8e95bbc4 (patch)
tree647cb984b8daaa477ef9d97ce205a047a7d24cf3
parent031b2087b57713d29b98140fb1f0b9f7b4fc7a21 (diff)
downloadredis-py-fde03fbd45981c204908fe2a82999acf8e95bbc4.tar.gz
Fix typo work -> word (#2341)
Co-authored-by: dvora-h <67596500+dvora-h@users.noreply.github.com>
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 80e2cc2..f5ad9a4 100644
--- a/README.md
+++ b/README.md
@@ -63,7 +63,7 @@ Alternatively, you might want to look at [Async connections](https://redis.readt
### Redis Commands
-There is built-in support for all of the [out-of-the-box Redis commands](https://redis.io/commands). They are exposed using the raw Redis command names (`HSET`, `HGETALL`, etc.) except where a work (i.e del) is reserved by the language. The complete set of commands can be found [here](https://github.com/redis/redis-py/tree/master/redis/commands), or [the documentation](https://redis.readthedocs.io/en/stable/commands.html).
+There is built-in support for all of the [out-of-the-box Redis commands](https://redis.io/commands). They are exposed using the raw Redis command names (`HSET`, `HGETALL`, etc.) except where a word (i.e del) is reserved by the language. The complete set of commands can be found [here](https://github.com/redis/redis-py/tree/master/redis/commands), or [the documentation](https://redis.readthedocs.io/en/stable/commands.html).
## Advanced Topics