We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ff22ae3 commit 94e6791Copy full SHA for 94e6791
Doc/library/enum.rst
@@ -919,7 +919,7 @@ Utilities and Decorators
919
* ``FIRST = auto()`` will work (auto() is replaced with ``1``);
920
* ``SECOND = auto(), -2`` will work (auto is replaced with ``2``, so ``2, -2`` is
921
used to create the ``SECOND`` enum member;
922
- * ``THREE = [auto(), -3]`` will *not* work (``[<auto instance>, -3]``) is used to
+ * ``THREE = [auto(), -3]`` will *not* work (``[<auto instance>, -3]`` is used to
923
create the ``THREE`` enum member)
924
925
.. versionchanged:: 3.11.1
0 commit comments