]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Avoid splitting a word between a link and text
authorÉric Araujo <merwok@netwok.org>
Thu, 18 Aug 2011 22:39:19 +0000 (00:39 +0200)
committerÉric Araujo <merwok@netwok.org>
Thu, 18 Aug 2011 22:39:19 +0000 (00:39 +0200)
Doc/glossary.rst

index 2003e0bc9a772a3c71c597497a03cc055ecb97bc..9d63bc49c6ea22075e9ddc46930cc7c3b9b1e5d4 100644 (file)
@@ -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