diff options
author | Éric Araujo <merwok@netwok.org> | 2011-08-18 22:39:19 (GMT) |
---|---|---|
committer | Éric Araujo <merwok@netwok.org> | 2011-08-18 22:39:19 (GMT) |
commit | 0519b09936d1ec0ea0f339e733ba454905c3f543 (patch) | |
tree | 90afdebadfe79e72f52c3b05b93fef1aa3ece968 /Doc/glossary.rst | |
parent | 5ad517a7d9c2694e726b3244505af274f91fb5d9 (diff) | |
download | cpython-0519b09936d1ec0ea0f339e733ba454905c3f543.zip cpython-0519b09936d1ec0ea0f339e733ba454905c3f543.tar.gz cpython-0519b09936d1ec0ea0f339e733ba454905c3f543.tar.bz2 |
Avoid splitting a word between a link and text
Diffstat (limited to 'Doc/glossary.rst')
-rw-r--r-- | Doc/glossary.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/glossary.rst b/Doc/glossary.rst index 2003e0b..9d63bc4 100644 --- a/Doc/glossary.rst +++ b/Doc/glossary.rst @@ -163,8 +163,8 @@ Glossary well-designed code improves its flexibility by allowing polymorphic substitution. Duck-typing avoids tests using :func:`type` or :func:`isinstance`. (Note, however, that duck-typing can be complemented - with :term:`abstract base class`\ es.) Instead, it typically employs - :func:`hasattr` tests or :term:`EAFP` programming. + with :term:`abstract base classes <abstract base class>`.) Instead, it + typically employs :func:`hasattr` tests or :term:`EAFP` programming. EAFP Easier to ask for forgiveness than permission. This common Python coding |