From a0305c5fdfdef7a362d0262c54399c4a6013d1ea Mon Sep 17 00:00:00 2001 From: Ikko Eltociear Ashimine Date: Mon, 3 Apr 2023 00:25:46 +0900 Subject: [PATCH] fix typo in _ssl.c (GH-103192) seperated -> separated Automerge-Triggered-By: GH:AlexWaygood --- Modules/_ssl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/_ssl.c b/Modules/_ssl.c index 3fbb37332f6..e0351a89e6a 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.