Fix some typos in comments (#9802)

This commit is contained in:
Alex Waygood
2023-02-23 22:11:24 +00:00
committed by GitHub
parent 6ba28ae547
commit 1d2ae2598b
8 changed files with 9 additions and 9 deletions

View File

@@ -30,7 +30,7 @@ if sys.platform != "win32":
]
_RequestType: TypeAlias = _socket | tuple[bytes, _socket]
_AfUnixAddress: TypeAlias = str | ReadableBuffer # adddress acceptable for an AF_UNIX socket
_AfUnixAddress: TypeAlias = str | ReadableBuffer # address acceptable for an AF_UNIX socket
_AfInetAddress: TypeAlias = tuple[str | bytes | bytearray, int] # address acceptable for an AF_INET socket
# This can possibly be generic at some point: