diff options
author | Kumar Aditya <59607654+kumaraditya303@users.noreply.github.com> | 2021-12-23 09:17:31 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-23 09:17:31 (GMT) |
commit | 71ef0b4c2b77195bb1adc42602549284f7ee9566 (patch) | |
tree | 665a7cbe56718dd952ca582dc9f52fce2fa3d771 /Doc/library/tarfile.rst | |
parent | 31ff96712e8f89ac1056c2da880b44650002219f (diff) | |
download | cpython-71ef0b4c2b77195bb1adc42602549284f7ee9566.zip cpython-71ef0b4c2b77195bb1adc42602549284f7ee9566.tar.gz cpython-71ef0b4c2b77195bb1adc42602549284f7ee9566.tar.bz2 |
bpo-46157: fix typo in docs (GH-30237)
Diffstat (limited to 'Doc/library/tarfile.rst')
-rw-r--r-- | Doc/library/tarfile.rst | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Doc/library/tarfile.rst b/Doc/library/tarfile.rst index 6afb839..f5c49b0 100644 --- a/Doc/library/tarfile.rst +++ b/Doc/library/tarfile.rst @@ -63,19 +63,19 @@ Some facts and figures: +------------------+---------------------------------------------+ | ``'x'`` or | Create a tarfile exclusively without | | ``'x:'`` | compression. | - | | Raise an :exc:`FileExistsError` exception | + | | Raise a :exc:`FileExistsError` exception | | | if it already exists. | +------------------+---------------------------------------------+ | ``'x:gz'`` | Create a tarfile with gzip compression. | - | | Raise an :exc:`FileExistsError` exception | + | | Raise a :exc:`FileExistsError` exception | | | if it already exists. | +------------------+---------------------------------------------+ | ``'x:bz2'`` | Create a tarfile with bzip2 compression. | - | | Raise an :exc:`FileExistsError` exception | + | | Raise a :exc:`FileExistsError` exception | | | if it already exists. | +------------------+---------------------------------------------+ | ``'x:xz'`` | Create a tarfile with lzma compression. | - | | Raise an :exc:`FileExistsError` exception | + | | Raise a :exc:`FileExistsError` exception | | | if it already exists. | +------------------+---------------------------------------------+ | ``'a' or 'a:'`` | Open for appending with no compression. The | |