Commit 4019852b authored by Benjamin Peterson's avatar Benjamin Peterson

fix name of argument in docstring and the docs (closes #25076)

Patch by TAKASE Arihiro.
parent 95c3e6cb
...@@ -521,7 +521,7 @@ This module provides the following functions. ...@@ -521,7 +521,7 @@ This module provides the following functions.
.. method:: CCompiler.library_option(lib) .. 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. shared library or executable.
......
...@@ -752,7 +752,7 @@ class CCompiler: ...@@ -752,7 +752,7 @@ class CCompiler:
raise NotImplementedError raise NotImplementedError
def library_option(self, lib): 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. linked into the shared library or executable.
""" """
raise NotImplementedError raise NotImplementedError
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment