diff options
author | HongWeipeng <hongweichen8888@sina.com> | 2019-09-21 05:22:54 (GMT) |
---|---|---|
committer | Stéphane Wirtel <stephane@wirtel.be> | 2019-09-21 05:22:54 (GMT) |
commit | bb16fb2cb8dca1fa1d67621c3175793eda7dbdc2 (patch) | |
tree | 5c4480749030111096f0939e97758ec6dc0d3d93 /Lib | |
parent | 7ce4bfa8cfcc78d03e164f2de64a2caad1d919af (diff) | |
download | cpython-bb16fb2cb8dca1fa1d67621c3175793eda7dbdc2.zip cpython-bb16fb2cb8dca1fa1d67621c3175793eda7dbdc2.tar.gz cpython-bb16fb2cb8dca1fa1d67621c3175793eda7dbdc2.tar.bz2 |
Doc: Fix spelling errors of 'initial' in enum.py (GH-16314)
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/enum.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/enum.py b/Lib/enum.py index 8f82a6d..8a6e5d2 100644 --- a/Lib/enum.py +++ b/Lib/enum.py @@ -672,7 +672,7 @@ class Flag(Enum): Generate the next value when not given. name: the name of the member - start: the initital start value or None + start: the initial start value or None count: the number of existing members last_value: the last value assigned or None """ |