From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Mon, 6 Sep 2021 21:35:07 +0000 (-0700) Subject: Fix typo in a comment in Modules/_ssl.c: s/validata/validate/ (GH-27993) (GH-27997) X-Git-Tag: v3.10.0rc2~6 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e5f259e575e474626b1e314b8d4f0a8cd61832e1;p=thirdparty%2FPython%2Fcpython.git Fix typo in a comment in Modules/_ssl.c: s/validata/validate/ (GH-27993) (GH-27997) (cherry picked from commit 28db1f61f20352c02e4ae1518e5aeb6505df3045) --- diff --git a/Modules/_ssl.c b/Modules/_ssl.c index 84cc3697b070..6c63301b2a7d 100644 --- a/Modules/_ssl.c +++ b/Modules/_ssl.c @@ -4047,7 +4047,7 @@ _ssl__SSLContext_load_verify_locations_impl(PySSLContext *self, goto error; } - /* validata cadata type and load cadata */ + /* validate cadata type and load cadata */ if (cadata) { if (PyUnicode_Check(cadata)) { PyObject *cadata_ascii = PyUnicode_AsASCIIString(cadata);