diff options
author | Miss Skeleton (bot) <31488909+miss-islington@users.noreply.github.com> | 2020-10-25 00:32:36 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-25 00:32:36 (GMT) |
commit | eac21a048bb6f33b20224a5d6896c34d1d6abc8e (patch) | |
tree | 700c2a605f3804997c2e67a4e9b6183132fe3299 /Doc | |
parent | 253c8eb40ec5a87aa539f913fcd83d1759069981 (diff) | |
download | cpython-eac21a048bb6f33b20224a5d6896c34d1d6abc8e.zip cpython-eac21a048bb6f33b20224a5d6896c34d1d6abc8e.tar.gz cpython-eac21a048bb6f33b20224a5d6896c34d1d6abc8e.tar.bz2 |
[doc] Fix link to abc.ABCMeta.register in Glossary (GH-22932)
(cherry picked from commit e01e442125bbc98e6dab66f38ecc6c45f69e6587)
Co-authored-by: Andre Delfino <adelfino@gmail.com>
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/glossary.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/glossary.rst b/Doc/glossary.rst index 7be755e..632ed3f 100644 --- a/Doc/glossary.rst +++ b/Doc/glossary.rst @@ -1024,7 +1024,7 @@ Glossary :meth:`index`, :meth:`__contains__`, and :meth:`__reversed__`. Types that implement this expanded interface can be registered explicitly using - :func:`~abc.register`. + :func:`~abc.ABCMeta.register`. single dispatch A form of :term:`generic function` dispatch where the implementation is |