summaryrefslogtreecommitdiff
path: root/doc/source/index.rst
diff options
context:
space:
mode:
authorLeonard Richardson <leonard.richardson@canonical.com>2012-04-18 08:45:51 -0400
committerLeonard Richardson <leonard.richardson@canonical.com>2012-04-18 08:45:51 -0400
commit3d0ae02cc3d0b947ef6102b31f4b354eec9b543a (patch)
treee4ee65c0f4d9c32c6bf738a3524c66b6a5737d40 /doc/source/index.rst
parent4a587ff6996a2192944d7fec341180c2a116ea17 (diff)
Fixed a bug that made the HTMLParser treebuilder generate XML definitions ending with two question marks instead of one. [bug=984258]
Diffstat (limited to 'doc/source/index.rst')
-rw-r--r--doc/source/index.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/source/index.rst b/doc/source/index.rst
index 5abc597..5aab90e 100644
--- a/doc/source/index.rst
+++ b/doc/source/index.rst
@@ -2183,7 +2183,7 @@ that the document is given an XML declaration instead of being put
into an <html> tag.::
BeautifulSoup("<a><b /></a>", "xml")
- # <?xml version="1.0" encoding="utf-8">
+ # <?xml version="1.0" encoding="utf-8"?>
# <a><b /></a>
There are also differences between HTML parsers. If you give Beautiful