#18466: fix more typos. Patch by Févry Thibault.
diff --git a/Modules/_ssl.c b/Modules/_ssl.c
index b6c2f6b..3ff76a5 100644
--- a/Modules/_ssl.c
+++ b/Modules/_ssl.c
@@ -1455,7 +1455,7 @@
* Otherwise OpenSSL might read in too much data,
* eating clear text data that happens to be
* transmitted after the SSL shutdown.
- * Should be safe to call repeatedly everytime this
+ * Should be safe to call repeatedly every time this
* function is used and the shutdown_seen_zero != 0
* condition is met.
*/
diff --git a/Modules/unicodedata.c b/Modules/unicodedata.c
index 95bdf3c..edc811e 100644
--- a/Modules/unicodedata.c
+++ b/Modules/unicodedata.c
@@ -520,7 +520,7 @@
while(stackptr) {
Py_UNICODE code = stack[--stackptr];
/* Hangul Decomposition adds three characters in
- a single step, so we need atleast that much room. */
+ a single step, so we need at least that much room. */
if (space < 3) {
Py_ssize_t newsize = PyString_GET_SIZE(result) + 10;
space += 10;