summaryrefslogtreecommitdiff
path: root/src/distutils2/compiler
diff options
context:
space:
mode:
author?ric Araujo <merwok@netwok.org>2010-08-09 09:28:11 +0200
committer?ric Araujo <merwok@netwok.org>2010-08-09 09:28:11 +0200
commitcecc8b7c3efb2e08c6f4bb840ae6540cb96196d9 (patch)
tree377c5f54b9f3fe82766b7ca1e28ef66ac2aa301d /src/distutils2/compiler
parent6f27b21b4215f7c63fef6acadba1a76cc3f8358e (diff)
downloaddisutils2-cecc8b7c3efb2e08c6f4bb840ae6540cb96196d9.tar.gz
Fix some familiar typos and use consistent spellings
Diffstat (limited to 'src/distutils2/compiler')
-rw-r--r--src/distutils2/compiler/bcppcompiler.py2
-rw-r--r--src/distutils2/compiler/ccompiler.py4
2 files changed, 3 insertions, 3 deletions
diff --git a/src/distutils2/compiler/bcppcompiler.py b/src/distutils2/compiler/bcppcompiler.py
index 7587048..71100df 100644
--- a/src/distutils2/compiler/bcppcompiler.py
+++ b/src/distutils2/compiler/bcppcompiler.py
@@ -249,7 +249,7 @@ class BCPPCompiler(CCompiler) :
# list of object files
ld_args.extend(objects)
- # XXX the command-line syntax for Borland C++ is a bit wonky;
+ # XXX the command line syntax for Borland C++ is a bit wonky;
# certain filenames are jammed together in one big string, but
# comma-delimited. This doesn't mesh too well with the
# Unix-centric attitude (with a DOS/Windows quoting hack) of
diff --git a/src/distutils2/compiler/ccompiler.py b/src/distutils2/compiler/ccompiler.py
index c9bb129..3a8d8dd 100644
--- a/src/distutils2/compiler/ccompiler.py
+++ b/src/distutils2/compiler/ccompiler.py
@@ -191,7 +191,7 @@ class CCompiler(object):
linker_exe linker used to create binary executables
archiver static library creator
- On platforms with a command-line (Unix, DOS/Windows), each of these
+ On platforms with a command line (Unix, DOS/Windows), each of these
is a string that will be split into executable name and (optional)
list of arguments. (Splitting the string is done similarly to how
Unix shells operate: words are delimited by spaces, but quotes and
@@ -597,7 +597,7 @@ class CCompiler(object):
output debug symbols in (or alongside) the object file(s).
'extra_preargs' and 'extra_postargs' are implementation- dependent.
- On platforms that have the notion of a command-line (e.g. Unix,
+ On platforms that have the notion of a command line (e.g. Unix,
DOS/Windows), they are most likely lists of strings: extra
command-line arguments to prepand/append to the compiler command
line. On other platforms, consult the implementation class