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 | 2509f6beef005a88eede79503086f8c0ba1b484c (patch) | |
| tree | 5694a9cd56fb5ca31f1633663966b4dd70593dd6 | |
| parent | 94e5864e4ff57bfb82bca76fe8d00e15b646fe98 (diff) | |
| download | python-setuptools-git-2509f6beef005a88eede79503086f8c0ba1b484c.tar.gz | |
fix name of argument in docstring and the docs (closes #25076)
Patch by TAKASE Arihiro.
| -rw-r--r-- | ccompiler.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ccompiler.py b/ccompiler.py index 911e84dd..e93a2736 100644 --- a/ccompiler.py +++ b/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 |
