diff options
author | Benjamin Peterson <benjamin@python.org> | 2015-09-12 17:20:47 -0700 |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2015-09-12 17:20:47 -0700 |
commit | 4019852bfc5b474488213ac29f80db74cc3b8f93 (patch) | |
tree | b69e9d39152125f29d75d27734c31438e5541822 /Lib/distutils/ccompiler.py | |
parent | 95c3e6cb2243acc0a102d9fa59efece1427a3936 (diff) | |
download | cpython-git-4019852bfc5b474488213ac29f80db74cc3b8f93.tar.gz |
fix name of argument in docstring and the docs (closes #25076)
Patch by TAKASE Arihiro.
Diffstat (limited to 'Lib/distutils/ccompiler.py')
-rw-r--r-- | Lib/distutils/ccompiler.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/ccompiler.py b/Lib/distutils/ccompiler.py index 911e84dd3b..e93a27363f 100644 --- a/Lib/distutils/ccompiler.py +++ b/Lib/distutils/ccompiler.py @@ -752,7 +752,7 @@ class CCompiler: raise NotImplementedError def library_option(self, lib): - """Return the compiler option to add 'dir' to the list of libraries + """Return the compiler option to add 'lib' to the list of libraries linked into the shared library or executable. """ raise NotImplementedError |