summaryrefslogtreecommitdiff
path: root/Lib/enum.py
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2019-09-20 22:41:35 -0700
committerGitHub <noreply@github.com>2019-09-20 22:41:35 -0700
commitf4e0ceb211e65dc080b64477380dfae923eb1306 (patch)
treece50c79ea266e451dd8bdd41b54e76f7c9624d93 /Lib/enum.py
parent960f52adc966748123a2d2b5dceb0482e090c15b (diff)
downloadcpython-git-f4e0ceb211e65dc080b64477380dfae923eb1306.tar.gz
Doc: Fix spelling errors of 'initial' in enum.py (GH-16314)
(cherry picked from commit bb16fb2cb8dca1fa1d67621c3175793eda7dbdc2) Co-authored-by: HongWeipeng <hongweichen8888@sina.com>
Diffstat (limited to 'Lib/enum.py')
-rw-r--r--Lib/enum.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/enum.py b/Lib/enum.py
index 6ef17c7f6d..108d389d94 100644
--- a/Lib/enum.py
+++ b/Lib/enum.py
@@ -677,7 +677,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
"""