From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Fri, 27 Aug 2021 12:33:33 +0000 (-0700) Subject: Fix typo in a comment in Modules/_ssl.c: s/validata/validate/ (GH-27993) (GH-27999) X-Git-Tag: v3.8.12~8 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=44dd2ecb143b7ef39b22e76d7d24f62dc65eb359;p=thirdparty%2FPython%2Fcpython.git Fix typo in a comment in Modules/_ssl.c: s/validata/validate/ (GH-27993) (GH-27999) (cherry picked from commit 28db1f61f20352c02e4ae1518e5aeb6505df3045) Co-authored-by: Adam Dangoor --- diff --git a/Modules/_ssl.c b/Modules/_ssl.c index d6a2fb814adc..35d9d65f8c07 100644 --- a/Modules/_ssl.c +++ b/Modules/_ssl.c @@ -4231,7 +4231,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);