diff options
author | Georg Brandl <georg@python.org> | 2008-11-23 21:57:30 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-11-23 21:57:30 (GMT) |
commit | 0b9999c0792dcfe6f7c231ff410c22f1483080e9 (patch) | |
tree | 6cd9e7fab75197c1dd2d02ce3e5a58b684c04de2 /Doc | |
parent | 061d2e2ee9f5853560bc1dde2d71311a373202a3 (diff) | |
download | cpython-0b9999c0792dcfe6f7c231ff410c22f1483080e9.zip cpython-0b9999c0792dcfe6f7c231ff410c22f1483080e9.tar.gz cpython-0b9999c0792dcfe6f7c231ff410c22f1483080e9.tar.bz2 |
#4399: fix typo.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/ctypes.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/ctypes.rst b/Doc/library/ctypes.rst index 8e920f8..0e37332 100644 --- a/Doc/library/ctypes.rst +++ b/Doc/library/ctypes.rst @@ -1370,7 +1370,7 @@ function exported by these libraries, and reacquired afterwards. All these classes can be instantiated by calling them with at least one argument, the pathname of the shared library. If you have an existing handle to -an already loaded shard library, it can be passed as the ``handle`` named +an already loaded shared library, it can be passed as the ``handle`` named parameter, otherwise the underlying platforms ``dlopen`` or :meth:`LoadLibrary` function is used to load the library into the process, and to get a handle to it. |