summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIkko Eltociear Ashimine <eltociear@gmail.com>2023-04-02 15:25:46 (GMT)
committerGitHub <noreply@github.com>2023-04-02 15:25:46 (GMT)
commita0305c5fdfdef7a362d0262c54399c4a6013d1ea (patch)
tree48f62b70c0840b8560b8576aaf4a86a4a1366057
parent6d59c9e32ebb6d8468c7eb26e7cf3efd458c7a73 (diff)
downloadcpython-a0305c5fdfdef7a362d0262c54399c4a6013d1ea.zip
cpython-a0305c5fdfdef7a362d0262c54399c4a6013d1ea.tar.gz
cpython-a0305c5fdfdef7a362d0262c54399c4a6013d1ea.tar.bz2
fix typo in _ssl.c (GH-103192)
seperated -> separated Automerge-Triggered-By: GH:AlexWaygood
-rw-r--r--Modules/_ssl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_ssl.c b/Modules/_ssl.c
index 3fbb373..e0351a8 100644
--- a/Modules/_ssl.c
+++ b/Modules/_ssl.c
@@ -2006,7 +2006,7 @@ _ssl__SSLSocket_shared_ciphers_impl(PySSLSocket *self)
/* Rather than use SSL_get_shared_ciphers, we use an equivalent algorithm because:
- 1) It returns a colon seperated list of strings, in an undefined
+ 1) It returns a colon separated list of strings, in an undefined
order, that we would have to post process back into tuples.
2) It will return a truncated string with no indication that it has
done so, if the buffer is too small.