diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2021-05-04 13:24:46 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-04 13:24:46 (GMT) |
commit | 377f3d43aa9b76a425ce5a853065d56290379a15 (patch) | |
tree | f11eda5a908a4fa914c3e7d9a97c2526292573d3 /Doc/library | |
parent | 4bb0a815ef2b683af75f43ab20d52eaffe78b436 (diff) | |
download | cpython-377f3d43aa9b76a425ce5a853065d56290379a15.zip cpython-377f3d43aa9b76a425ce5a853065d56290379a15.tar.gz cpython-377f3d43aa9b76a425ce5a853065d56290379a15.tar.bz2 |
fix enum.property reference in docs (GH-25875) (#25876)
(cherry picked from commit 6fee0835cb00677acd341751f831ca1af128f4c9)
Co-authored-by: Jelle Zijlstra <jelle.zijlstra@gmail.com>
Diffstat (limited to 'Doc/library')
-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. |