diff options
author | Thomas Heller <theller@ctypes.org> | 2007-09-06 20:26:20 (GMT) |
---|---|---|
committer | Thomas Heller <theller@ctypes.org> | 2007-09-06 20:26:20 (GMT) |
commit | a3a7ddaae506bb783fd43ade071ac06628d2c873 (patch) | |
tree | 21fb1d4484280cee5b2c42fcba7aca28a62eb3a6 /Doc | |
parent | ecabc37b08ffd4e270a08fae8a7ecdeeba343c56 (diff) | |
download | cpython-a3a7ddaae506bb783fd43ade071ac06628d2c873.zip cpython-a3a7ddaae506bb783fd43ade071ac06628d2c873.tar.gz cpython-a3a7ddaae506bb783fd43ade071ac06628d2c873.tar.bz2 |
Fix typo: c_float represents to C float type.
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 1a52a75..6c9dbf8 100644 --- a/Doc/library/ctypes.rst +++ b/Doc/library/ctypes.rst @@ -2069,7 +2069,7 @@ These are the fundamental ctypes data types: .. class:: c_float - Represents the C double datatype. The constructor accepts an optional float + Represents the C float datatype. The constructor accepts an optional float initializer. |