diff options
author | Greg Ward <gward@python.net> | 2000-07-27 02:13:20 (GMT) |
---|---|---|
committer | Greg Ward <gward@python.net> | 2000-07-27 02:13:20 (GMT) |
commit | 612eb9f58fe38f33484f36bcba97a4b3d8e090a9 (patch) | |
tree | 123a9cab1828c8b5d802bbc48163e5d6a5ce3f30 /Lib/distutils/dist.py | |
parent | aa5372caa758b8bd36ae0621a490dcc0ec21d2ae (diff) | |
download | cpython-612eb9f58fe38f33484f36bcba97a4b3d8e090a9.zip cpython-612eb9f58fe38f33484f36bcba97a4b3d8e090a9.tar.gz cpython-612eb9f58fe38f33484f36bcba97a4b3d8e090a9.tar.bz2 |
Fixed a grab-bag of typos spotted by Rob Hooft.
Diffstat (limited to 'Lib/distutils/dist.py')
-rw-r--r-- | Lib/distutils/dist.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/distutils/dist.py b/Lib/distutils/dist.py index 5f81c88..ed829fe 100644 --- a/Lib/distutils/dist.py +++ b/Lib/distutils/dist.py @@ -167,7 +167,7 @@ class Distribution: # It's only safe to query 'have_run' for a command class that has # been instantiated -- a false value will be inserted when the # command object is created, and replaced with a true value when - # the command is succesfully run. Thus it's probably best to use + # the command is successfully run. Thus it's probably best to use # '.get()' rather than a straight lookup. self.have_run = {} @@ -677,7 +677,7 @@ class Distribution: def get_command_obj (self, command, create=1): """Return the command object for 'command'. Normally this object - is cached on a previous call to 'get_command_obj()'; if no comand + is cached on a previous call to 'get_command_obj()'; if no command object for 'command' is in the cache, then we either create and return it (if 'create' is true) or return None. """ |