diff options
author | Lars Gustäbel <lars@gustaebel.de> | 2011-12-10 11:45:45 (GMT) |
---|---|---|
committer | Lars Gustäbel <lars@gustaebel.de> | 2011-12-10 11:45:45 (GMT) |
commit | 0c6cbbd6324b40e6cd532d02c2dffdf4daca58db (patch) | |
tree | 2f202d6f11481f9857070ee2a16e0991421858cc /Doc | |
parent | 5126df602cd4911c3578173b2c2686ddfaa59478 (diff) | |
download | cpython-0c6cbbd6324b40e6cd532d02c2dffdf4daca58db.zip cpython-0c6cbbd6324b40e6cd532d02c2dffdf4daca58db.tar.gz cpython-0c6cbbd6324b40e6cd532d02c2dffdf4daca58db.tar.bz2 |
Fix doc typo.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/tarfile.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/tarfile.rst b/Doc/library/tarfile.rst index 9b7071b..b56058b 100644 --- a/Doc/library/tarfile.rst +++ b/Doc/library/tarfile.rst @@ -101,10 +101,10 @@ Some facts and figures: +-------------+--------------------------------------------+ | ``'w|'`` | Open an uncompressed *stream* for writing. | +-------------+--------------------------------------------+ - | ``'w|gz'`` | Open an gzip compressed *stream* for | + | ``'w|gz'`` | Open a gzip compressed *stream* for | | | writing. | +-------------+--------------------------------------------+ - | ``'w|bz2'`` | Open an bzip2 compressed *stream* for | + | ``'w|bz2'`` | Open a bzip2 compressed *stream* for | | | writing. | +-------------+--------------------------------------------+ |