[Python-checkins] cpython (2.7): Issue #18026: fix ctypes doc typo

ned.deily python-checkins at python.org
Mon May 20 23:33:45 CEST 2013


http://hg.python.org/cpython/rev/7937f5c56924
changeset:   83869:7937f5c56924
branch:      2.7
parent:      83862:8edfe539d4c6
user:        Ned Deily <nad at acm.org>
date:        Mon May 20 14:27:06 2013 -0700
summary:
  Issue #18026: fix ctypes doc typo

files:
  Doc/library/ctypes.rst |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Doc/library/ctypes.rst b/Doc/library/ctypes.rst
--- a/Doc/library/ctypes.rst
+++ b/Doc/library/ctypes.rst
@@ -1333,7 +1333,7 @@
 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.
 
 

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list