fix name of argument in docstring and the docs (closes #25076)
Patch by TAKASE Arihiro.
This commit is contained in:
parent
9b2e37f688
commit
061653091e
|
@ -516,7 +516,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.
|
||||
|
||||
|
||||
|
|
|
@ -718,7 +718,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
|
||||
|
|
Loading…
Reference in New Issue