diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2021-08-27 11:59:23 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-27 11:59:23 (GMT) |
commit | 2351ff2c8f9f4ff0d3eb5cfa8c354ee8864789cc (patch) | |
tree | 6392ce7996ab281cc209af2c8c3bbd3aaaa8e0c6 | |
parent | 9500dd5144cb911cf4e6fb027bb25b675f0e3643 (diff) | |
download | cpython-2351ff2c8f9f4ff0d3eb5cfa8c354ee8864789cc.zip cpython-2351ff2c8f9f4ff0d3eb5cfa8c354ee8864789cc.tar.gz cpython-2351ff2c8f9f4ff0d3eb5cfa8c354ee8864789cc.tar.bz2 |
Fix typo in a comment in Modules/_ssl.c: s/validata/validate/ (GH-27993) (GH-27998)
(cherry picked from commit 28db1f61f20352c02e4ae1518e5aeb6505df3045)
Co-authored-by: Adam Dangoor <adamdangoor@gmail.com>
-rw-r--r-- | Modules/_ssl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_ssl.c b/Modules/_ssl.c index 97e314b..0498c15 100644 --- a/Modules/_ssl.c +++ b/Modules/_ssl.c @@ -4229,7 +4229,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); |