summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoey Prat <roey.prat@redislabs.com>2020-07-05 09:15:08 +0300
committerRoey Prat <roey.prat@redislabs.com>2020-07-05 09:15:08 +0300
commitf28de8a2078d58dde81ce17b8ec87f963ff40da5 (patch)
tree3fcb59f380a3e7b9b7265007c32ef259a57d010a
parent67c2fca8bb2208d57f74ad34da52c0ca2d9e29dc (diff)
downloadredis-py-roey-changelog_ssl.tar.gz
documentation: fix ssl typos in the changelogroey-changelog_ssl
-rw-r--r--CHANGES2
1 files changed, 1 insertions, 1 deletions
diff --git a/CHANGES b/CHANGES
index 98f3f73..53026a3 100644
--- a/CHANGES
+++ b/CHANGES
@@ -459,7 +459,7 @@
* Fixed a bug where some encodings (like utf-16) were unusable on Python 3
as command names and literals would get encoded.
* Added an SSLConnection class that allows for secure connections through
- stunnel or other means. Construct and SSL connection with the sll=True
+ stunnel or other means. Construct an SSL connection with the ssl=True
option on client classes, using the rediss:// scheme from an URL, or
by passing the SSLConnection class to a connection pool's
connection_class argument. Thanks https://github.com/oranagra.