]> granicus.if.org Git - python/commitdiff
Insert a missing semicolon in sgmllib documentation (#772)
authorcocoatomo <cocoatomo77@gmail.com>
Wed, 22 Mar 2017 19:12:36 +0000 (04:12 +0900)
committerSerhiy Storchaka <storchaka@gmail.com>
Wed, 22 Mar 2017 19:12:36 +0000 (21:12 +0200)
Doc/library/sgmllib.rst

index 1fc650c24430266f425b5a02b501102215f5b1d9..ffd010210eafb4ffb4f8e364ebfeca8d3fc49088 100644 (file)
@@ -166,7 +166,7 @@ A single exception is defined as well:
    passing it to :meth:`convert_entityref`.  If a translation is returned, it calls
    the method :meth:`handle_data` with the translation; otherwise, it calls the
    method ``unknown_entityref(ref)``. The default :attr:`entitydefs` defines
-   translations for ``&amp;``, ``&apos``, ``&gt;``, ``&lt;``, and ``&quot;``.
+   translations for ``&amp;``, ``&apos;``, ``&gt;``, ``&lt;``, and ``&quot;``.
 
    .. versionchanged:: 2.5
       Use :meth:`convert_entityref` instead of hard-coding the conversion.