summaryrefslogtreecommitdiff
path: root/Modules/_ssl.c
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2018-10-05 07:35:18 -0700
committerGitHub <noreply@github.com>2018-10-05 07:35:18 -0700
commitb3c4a050b7b9a07caeeb9ad74af1d3a750000422 (patch)
treeed98ba9f0e13cd87b5fb09e90e899f428a89a2bd /Modules/_ssl.c
parent23fd846feba59977633e19dcca8a520dc4b01383 (diff)
downloadcpython-git-b3c4a050b7b9a07caeeb9ad74af1d3a750000422.tar.gz
bpo-34906: Doc: Fix typos (GH-9712)
(cherry picked from commit 07fbbfde1b300369b4f8d1cfb80045fbb23b7091) Co-authored-by: Stéphane Wirtel <stephane@wirtel.be>
Diffstat (limited to 'Modules/_ssl.c')
-rw-r--r--Modules/_ssl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_ssl.c b/Modules/_ssl.c
index 3c9d46e43d..4253e2a772 100644
--- a/Modules/_ssl.c
+++ b/Modules/_ssl.c
@@ -273,7 +273,7 @@ SSL_SESSION_get_ticket_lifetime_hint(const SSL_SESSION *s)
#error "Py_SSL_DEFAULT_CIPHERS 0 needs Py_SSL_DEFAULT_CIPHER_STRING"
#endif
#elif PY_SSL_DEFAULT_CIPHERS == 1
-/* Python custom selection of sensible ciper suites
+/* Python custom selection of sensible cipher suites
* DEFAULT: OpenSSL's default cipher list. Since 1.0.2 the list is in sensible order.
* !aNULL:!eNULL: really no NULL ciphers
* !MD5:!3DES:!DES:!RC4:!IDEA:!SEED: no weak or broken algorithms on old OpenSSL versions.