From: Tim Gates Date: Mon, 21 Dec 2020 20:49:51 +0000 (+1100) Subject: docs: fix simple typo, authentiate -> authenticate X-Git-Tag: v6.2.0b1~56^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=695420847f536446de5245df9973653d65dc2d3a;p=thirdparty%2Ftornado.git docs: fix simple typo, authentiate -> authenticate There is a small typo in tornado/netutil.py. Should read `authenticate` rather than `authentiate`. --- diff --git a/tornado/netutil.py b/tornado/netutil.py index 868d3e9e6..f8a303805 100644 --- a/tornado/netutil.py +++ b/tornado/netutil.py @@ -30,7 +30,7 @@ from tornado.util import Configurable, errno_from_exception from typing import List, Callable, Any, Type, Dict, Union, Tuple, Awaitable, Optional # Note that the naming of ssl.Purpose is confusing; the purpose -# of a context is to authentiate the opposite side of the connection. +# of a context is to authenticate the opposite side of the connection. _client_ssl_defaults = ssl.create_default_context(ssl.Purpose.SERVER_AUTH) _server_ssl_defaults = ssl.create_default_context(ssl.Purpose.CLIENT_AUTH) if hasattr(ssl, "OP_NO_COMPRESSION"):