From 4019852bfc5b474488213ac29f80db74cc3b8f93 Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Sat, 12 Sep 2015 17:20:47 -0700 Subject: fix name of argument in docstring and the docs (closes #25076) Patch by TAKASE Arihiro. --- Doc/distutils/apiref.rst | 2 +- Lib/distutils/ccompiler.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Doc/distutils/apiref.rst b/Doc/distutils/apiref.rst index 53d7527..6eb87cb 100644 --- a/Doc/distutils/apiref.rst +++ b/Doc/distutils/apiref.rst @@ -521,7 +521,7 @@ This module provides the following functions. .. method:: CCompiler.library_option(lib) - Return the compiler option to add *dir* to the list of libraries linked into the + Return the compiler option to add *lib* to the list of libraries linked into the shared library or executable. diff --git a/Lib/distutils/ccompiler.py b/Lib/distutils/ccompiler.py index 911e84d..e93a273 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 -- cgit v0.12