From 695420847f536446de5245df9973653d65dc2d3a Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Tue, 22 Dec 2020 07:49:51 +1100 Subject: [PATCH] docs: fix simple typo, authentiate -> authenticate There is a small typo in tornado/netutil.py. Should read `authenticate` rather than `authentiate`. --- tornado/netutil.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"): -- 2.47.2