diff options
author | Fred Drake <fdrake@acm.org> | 2010-05-11 18:12:27 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2010-05-11 18:12:27 (GMT) |
commit | 8b37dd16137c8feac70ae6d10b5c94553b9ecb5a (patch) | |
tree | 4d465b1a6342161157e4bf34a85eb85ece576df1 /Doc/library/httplib.rst | |
parent | 11bb2cdc6aa8db142a87de281b83293d500847b2 (diff) | |
download | cpython-8b37dd16137c8feac70ae6d10b5c94553b9ecb5a.zip cpython-8b37dd16137c8feac70ae6d10b5c94553b9ecb5a.tar.gz cpython-8b37dd16137c8feac70ae6d10b5c94553b9ecb5a.tar.bz2 |
fix typo
Diffstat (limited to 'Doc/library/httplib.rst')
-rw-r--r-- | Doc/library/httplib.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/httplib.rst b/Doc/library/httplib.rst index 8390087..e54afd9 100644 --- a/Doc/library/httplib.rst +++ b/Doc/library/httplib.rst @@ -560,8 +560,8 @@ Here is an example session that uses the ``GET`` method:: >>> data2 = r2.read() >>> conn.close() -Here is an example session that uses ``HEAD`` method. Note that ``HEAD`` method -never returns any data. :: +Here is an example session that uses the ``HEAD`` method. Note that``HEAD`` +method never returns any data. :: >>> import httplib |