diff options
author | Thomas Heller <theller@ctypes.org> | 2009-06-08 19:11:54 (GMT) |
---|---|---|
committer | Thomas Heller <theller@ctypes.org> | 2009-06-08 19:11:54 (GMT) |
commit | 3440c42f330efc4fc4751b2e921507fb007591f1 (patch) | |
tree | f3b489a0349c360c0a293c1dcf9e27d05665162c /Doc | |
parent | 7ae90dd22d4a8e2fbf49c4fd0be9cc88bb852fee (diff) | |
download | cpython-3440c42f330efc4fc4751b2e921507fb007591f1.zip cpython-3440c42f330efc4fc4751b2e921507fb007591f1.tar.gz cpython-3440c42f330efc4fc4751b2e921507fb007591f1.tar.bz2 |
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 e2dc7d8..ded0df8 100644 --- a/Doc/library/ctypes.rst +++ b/Doc/library/ctypes.rst @@ -247,7 +247,7 @@ Fundamental data types +----------------------+--------------------------------+----------------------------+ | :class:`c_longdouble`| ``long double`` | float | +----------------------+--------------------------------+----------------------------+ - | :class:`c_char_p` | ``char *`` (NUL terminated) | bytes objcet or ``None`` | + | :class:`c_char_p` | ``char *`` (NUL terminated) | bytes object or ``None`` | +----------------------+--------------------------------+----------------------------+ | :class:`c_wchar_p` | ``wchar_t *`` (NUL terminated) | string or ``None`` | +----------------------+--------------------------------+----------------------------+ |