]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Issue #18026: fix ctypes doc typo
authorNed Deily <nad@acm.org>
Mon, 20 May 2013 21:27:06 +0000 (14:27 -0700)
committerNed Deily <nad@acm.org>
Mon, 20 May 2013 21:27:06 +0000 (14:27 -0700)
Doc/library/ctypes.rst

index c72a0b5a4edac3fb3a70a5d63452a7189e5d044a..6be8debaf02c0c67930819162da1fdaaa5470fdf 100644 (file)
@@ -1333,7 +1333,7 @@ returns the full pathname, but since there is no predefined naming scheme a call
 like ``find_library("c")`` will fail and return ``None``.
 
 If wrapping a shared library with :mod:`ctypes`, it *may* be better to determine
-the shared library name at development type, and hardcode that into the wrapper
+the shared library name at development time, and hardcode that into the wrapper
 module instead of using :func:`find_library` to locate the library at runtime.