diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2021-08-27 12:33:33 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-27 12:33:33 (GMT) |
commit | 44dd2ecb143b7ef39b22e76d7d24f62dc65eb359 (patch) | |
tree | e4355f7389bc646f121f73433e8160c4ef395392 | |
parent | 9c74678d53847f61df255435a0e5a6e3e1d657f5 (diff) | |
download | cpython-44dd2ecb143b7ef39b22e76d7d24f62dc65eb359.zip cpython-44dd2ecb143b7ef39b22e76d7d24f62dc65eb359.tar.gz cpython-44dd2ecb143b7ef39b22e76d7d24f62dc65eb359.tar.bz2 |
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 <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 d6a2fb8..35d9d65 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); |