From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Sat, 21 Sep 2019 05:40:42 +0000 (-0700) Subject: Doc: Fix spelling errors of 'initial' in enum.py (GH-16314) X-Git-Tag: v3.7.5rc1~23 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8d4c52ffb47a4d3590758220f297ba58108e1ef3;p=thirdparty%2FPython%2Fcpython.git Doc: Fix spelling errors of 'initial' in enum.py (GH-16314) (cherry picked from commit bb16fb2cb8dca1fa1d67621c3175793eda7dbdc2) Co-authored-by: HongWeipeng --- diff --git a/Lib/enum.py b/Lib/enum.py index 5e97a9e8d810..d0b03b4aa56c 100644 --- a/Lib/enum.py +++ b/Lib/enum.py @@ -682,7 +682,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 """