summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTim McNamara <code@timmcnamara.co.nz>2018-09-01 08:56:58 (GMT)
committerIvan Levkivskyi <levkivskyi@gmail.com>2018-09-01 08:56:58 (GMT)
commit5265b3a98b376684e361b62d0728483b26f493f2 (patch)
treec1fd4a3c0be1bcf9628a371e9e569776a2339c9b
parent172a71f19bb5e9624651850b315f403c460b9699 (diff)
downloadcpython-5265b3a98b376684e361b62d0728483b26f493f2.zip
cpython-5265b3a98b376684e361b62d0728483b26f493f2.tar.gz
cpython-5265b3a98b376684e361b62d0728483b26f493f2.tar.bz2
Fix typo in typing.py module docstring (#9014)
"explicitelly" → "explicitly"
-rw-r--r--Lib/typing.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/typing.py b/Lib/typing.py
index 4899263..445a424 100644
--- a/Lib/typing.py
+++ b/Lib/typing.py
@@ -2,7 +2,7 @@
The typing module: Support for gradual typing as defined by PEP 484.
At large scale, the structure of the module is following:
-* Imports and exports, all public names should be explicitelly added to __all__.
+* Imports and exports, all public names should be explicitly added to __all__.
* Internal helper functions: these should never be used in code outside this module.
* _SpecialForm and its instances (special forms): Any, NoReturn, ClassVar, Union, Optional
* Two classes whose instances can be type arguments in addition to types: ForwardRef and TypeVar