Skip to content

Commit 94e6791

Browse files
Remove unmatched parenthesis
Co-authored-by: Stan Ulbrych <89152624+StanFromIreland@users.noreply.github.com>
1 parent ff22ae3 commit 94e6791

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Doc/library/enum.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -919,7 +919,7 @@ Utilities and Decorators
919919
* ``FIRST = auto()`` will work (auto() is replaced with ``1``);
920920
* ``SECOND = auto(), -2`` will work (auto is replaced with ``2``, so ``2, -2`` is
921921
used to create the ``SECOND`` enum member;
922-
* ``THREE = [auto(), -3]`` will *not* work (``[<auto instance>, -3]``) is used to
922+
* ``THREE = [auto(), -3]`` will *not* work (``[<auto instance>, -3]`` is used to
923923
create the ``THREE`` enum member)
924924

925925
.. versionchanged:: 3.11.1

0 commit comments

Comments
 (0)