]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
fix typo in _ssl.c (GH-103192)
authorIkko Eltociear Ashimine <eltociear@gmail.com>
Sun, 2 Apr 2023 15:25:46 +0000 (00:25 +0900)
committerGitHub <noreply@github.com>
Sun, 2 Apr 2023 15:25:46 +0000 (08:25 -0700)
seperated -> separated

Automerge-Triggered-By: GH:AlexWaygood
Modules/_ssl.c

index 3fbb37332f67d3e773567ab26e4a7f178055e0b7..e0351a89e6a1e9a63ccf1a647470566b8be83baf 100644 (file)
@@ -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.