diff options
author | Jelle Zijlstra <jelle.zijlstra@gmail.com> | 2021-05-04 03:19:46 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-04 03:19:46 (GMT) |
commit | 6fee0835cb00677acd341751f831ca1af128f4c9 (patch) | |
tree | 9b4c7469acd23b1c846aecbb59c6fe3fd614c0f3 /Doc | |
parent | 652bcd9f9cd2ed89b5fa958f8456556aa43b48cc (diff) | |
download | cpython-6fee0835cb00677acd341751f831ca1af128f4c9.zip cpython-6fee0835cb00677acd341751f831ca1af128f4c9.tar.gz cpython-6fee0835cb00677acd341751f831ca1af128f4c9.tar.bz2 |
fix enum.property reference in docs (GH-25875)
Diffstat (limited to 'Doc')
-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 b5f9c2f..466d959 100644 --- a/Doc/library/enum.rst +++ b/Doc/library/enum.rst @@ -108,7 +108,7 @@ Module Contents :class:`Enum` class decorator to apply the appropriate global `__repr__`, and export its members into the global name space. - :func:`property` + :func:`.property` Allows :class:`Enum` members to have attributes without conflicting with other members' names. |