diff options
author | Andre Delfino <adelfino@gmail.com> | 2020-05-10 05:15:54 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-10 05:15:54 (GMT) |
commit | 85bdec1def789cdb60ab7ffe115e426267b00a60 (patch) | |
tree | 7392e18c8a0ba3eb0bf4e2500b83e6a2aa90b5ae /Doc | |
parent | ac7a92cc0a821699df48bc2e30a02c25d6338f78 (diff) | |
download | cpython-85bdec1def789cdb60ab7ffe115e426267b00a60.zip cpython-85bdec1def789cdb60ab7ffe115e426267b00a60.tar.gz cpython-85bdec1def789cdb60ab7ffe115e426267b00a60.tar.bz2 |
Add link to Enum class (GH-19884)
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/types.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/types.rst b/Doc/library/types.rst index 1d081e2..cdddb46 100644 --- a/Doc/library/types.rst +++ b/Doc/library/types.rst @@ -379,7 +379,7 @@ Additional Utility Classes and Functions class's __getattr__ method; this is done by raising AttributeError. This allows one to have properties active on an instance, and have virtual - attributes on the class with the same name (see Enum for an example). + attributes on the class with the same name (see :class:`enum.Enum` for an example). .. versionadded:: 3.4 |