diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2017-01-02 02:51:04 (GMT) |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2017-01-02 02:51:04 (GMT) |
commit | 2a267a12ee3620a86f684a5417a9e8792856ae48 (patch) | |
tree | aa9b3b15f297347efaf7264c8eecf078e9f1333d | |
parent | 37023b64d7a9b70641f512d577f051e44d706eb8 (diff) | |
download | cpython-2a267a12ee3620a86f684a5417a9e8792856ae48.zip cpython-2a267a12ee3620a86f684a5417a9e8792856ae48.tar.gz cpython-2a267a12ee3620a86f684a5417a9e8792856ae48.tar.bz2 |
Issue #29129: Fix typo in "Using auto" section
-rw-r--r-- | Doc/library/enum.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/enum.rst b/Doc/library/enum.rst index ddcc286..5cd6472 100644 --- a/Doc/library/enum.rst +++ b/Doc/library/enum.rst @@ -773,7 +773,7 @@ the (unimportant) value:: Using :class:`auto` """"""""""""""""""" -Using :class:`object` would look like:: +Using :class:`auto` would look like:: >>> class Color(NoValue): ... RED = auto() |