diff options
author | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2021-05-21 18:09:09 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-21 18:09:09 (GMT) |
commit | b06ed1d883cd79c920c514d8a1f4643cf93dc5e0 (patch) | |
tree | bd5b7907f43b5c8231a7ccd79dbe19f5baeaaf3a /Doc/library/enum.rst | |
parent | 2f47d8dcc735234bf9c7f92fbdacd8c5a6ee7761 (diff) | |
download | cpython-b06ed1d883cd79c920c514d8a1f4643cf93dc5e0.zip cpython-b06ed1d883cd79c920c514d8a1f4643cf93dc5e0.tar.gz cpython-b06ed1d883cd79c920c514d8a1f4643cf93dc5e0.tar.bz2 |
Remove duplicate words in docs. (GH-26167)
Diffstat (limited to 'Doc/library/enum.rst')
-rw-r--r-- | Doc/library/enum.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/enum.rst b/Doc/library/enum.rst index b755622..d9b06fb 100644 --- a/Doc/library/enum.rst +++ b/Doc/library/enum.rst @@ -597,8 +597,8 @@ Utilites and Decorators A :keyword:`class` decorator specifically for enumerations. It replaces the :meth:`__repr__` method with one that shows *module_name*.*member_name*. It - also injects the members, and their aliases, into the the global namespace - they were defined in. + also injects the members, and their aliases, into the global namespace they + were defined in. .. versionadded:: 3.10 |