summaryrefslogtreecommitdiffstats
path: root/Doc/library/tarfile.rst
diff options
context:
space:
mode:
authorKumar Aditya <59607654+kumaraditya303@users.noreply.github.com>2021-12-23 09:17:31 (GMT)
committerGitHub <noreply@github.com>2021-12-23 09:17:31 (GMT)
commit71ef0b4c2b77195bb1adc42602549284f7ee9566 (patch)
tree665a7cbe56718dd952ca582dc9f52fce2fa3d771 /Doc/library/tarfile.rst
parent31ff96712e8f89ac1056c2da880b44650002219f (diff)
downloadcpython-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.rst8
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 |