[Python-checkins] cpython (3.2): Avoid splitting a word between a link and text

eric.araujo python-checkins at python.org
Fri Aug 19 14:25:08 CEST 2011


http://hg.python.org/cpython/rev/b984e378f981
changeset:   71921:b984e378f981
branch:      3.2
parent:      71900:459e2a9b7f54
user:        Éric Araujo <merwok at netwok.org>
date:        Fri Aug 19 00:39:19 2011 +0200
summary:
  Avoid splitting a word between a link and text

files:
  Doc/glossary.rst |  4 ++--
  1 files changed, 2 insertions(+), 2 deletions(-)


diff --git a/Doc/glossary.rst b/Doc/glossary.rst
--- a/Doc/glossary.rst
+++ b/Doc/glossary.rst
@@ -163,8 +163,8 @@
       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

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list