summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Russell <ryanrussell@users.noreply.github.com>2022-05-31 23:17:29 -0500
committerGitHub <noreply@github.com>2022-06-01 07:17:29 +0300
commitedf10043f4a383ec93a2fb51917075ae1bbfbf48 (patch)
tree93dc1c4dd677c0df5a1a8dc7148bd23a69b7ed6b
parent04bc576679e9fedb24a0548521d80fe81c91e2ec (diff)
downloadredis-py-edf10043f4a383ec93a2fb51917075ae1bbfbf48.tar.gz
Improve Readability (#2206)
Signed-off-by: Ryan Russell <git@ryanrussell.org>
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 0735055..f5d4ae5 100644
--- a/README.md
+++ b/README.md
@@ -15,7 +15,7 @@ The Python interface to the Redis key-value store.
## Python Notice
-redis-py 4.2.x will be the last generation of redis-py to support python 3.6 as it has been [End of Life'd](https://www.python.org/dev/peps/pep-0494/#schedule-last-security-only-release). Async support was introduced in redis-py 4.2.x thanks to [aioredis](https://github.com/aio-libs/aioredis-py), which necessitates this change. We will continue to maintain 3.6 support as long as possible - but the plan is for redis-py version 5+ to offically remove 3.6.
+redis-py 4.2.x will be the last generation of redis-py to support python 3.6 as it has been [End of Life'd](https://www.python.org/dev/peps/pep-0494/#schedule-last-security-only-release). Async support was introduced in redis-py 4.2.x thanks to [aioredis](https://github.com/aio-libs/aioredis-py), which necessitates this change. We will continue to maintain 3.6 support as long as possible - but the plan is for redis-py version 5+ to officially remove 3.6.
---------------------------
@@ -76,7 +76,7 @@ can specify *decode_responses=True* in
returns a string type will be decoded with the encoding
specified.
-The default encoding is utf-8, but this can be customized by specifiying the
+The default encoding is utf-8, but this can be customized by specifying the
encoding argument for the redis.Redis class.
The encoding will be used to automatically encode any
strings passed to commands, such as key names and values.