summaryrefslogtreecommitdiff
path: root/Lib/zipapp.py
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-04-17 08:32:47 +0300
committerSerhiy Storchaka <storchaka@gmail.com>2016-04-17 08:32:47 +0300
commit6a7b3a77b4b2be0badd24ee5f0fdbaa2e0e79c3d (patch)
tree69e2dda76d29c6ac33906e0ad2e1359c5bc8e0e4 /Lib/zipapp.py
parent50dd1f7dd68ed2f526adfebd5caa342e26da4517 (diff)
downloadcpython-git-6a7b3a77b4b2be0badd24ee5f0fdbaa2e0e79c3d.tar.gz
Issue #26778: Fixed "a/an/and" typos in code comment and documentation.
Diffstat (limited to 'Lib/zipapp.py')
-rw-r--r--Lib/zipapp.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/Lib/zipapp.py b/Lib/zipapp.py
index c8380bfeca..eceb91de1a 100644
--- a/Lib/zipapp.py
+++ b/Lib/zipapp.py
@@ -89,9 +89,10 @@ def create_archive(source, target=None, interpreter=None, main=None):
The created application archive will have a shebang line specifying
that it should run with INTERPRETER (there will be no shebang line if
INTERPRETER is None), and a __main__.py which runs MAIN (if MAIN is
- not specified, an existing __main__.py will be used). It is an to specify
- MAIN for anything other than a directory source with no __main__.py, and it
- is an error to omit MAIN if the directory has no __main__.py.
+ not specified, an existing __main__.py will be used). It is an error
+ to specify MAIN for anything other than a directory source with no
+ __main__.py, and it is an error to omit MAIN if the directory has no
+ __main__.py.
"""
# Are we copying an existing archive?
source_is_file = False