fix error introduced in previous commit, and the adjacent additional typo
diff --git a/Doc/library/httplib.rst b/Doc/library/httplib.rst
index e54afd9..f7d9328 100644
--- a/Doc/library/httplib.rst
+++ b/Doc/library/httplib.rst
@@ -560,9 +560,8 @@
>>> data2 = r2.read()
>>> conn.close()
-Here is an example session that uses the ``HEAD`` method. Note that``HEAD``
-method never returns any data. ::
-
+Here is an example session that uses the ``HEAD`` method. Note that the
+``HEAD`` method never returns any data. ::
>>> import httplib
>>> conn = httplib.HTTPConnection("www.python.org")