summaryrefslogtreecommitdiff
path: root/Doc
diff options
context:
space:
mode:
authorMin ho Kim <minho42@gmail.com>2019-07-22 06:12:33 +1000
committerTerry Jan Reedy <tjreedy@udel.edu>2019-07-21 16:12:33 -0400
commit96e12d5f4f3c5a20986566038ee763dff3c228a1 (patch)
treeae4039f978a155a295903e084f4531d42b8cf7a8 /Doc
parent8e3a7380ecb310b50e48f47d1f26190cc9c45eb6 (diff)
downloadcpython-git-96e12d5f4f3c5a20986566038ee763dff3c228a1.tar.gz
Fix typos in docs, comments and test assert messages (#14872)
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/ctypes.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/ctypes.rst b/Doc/library/ctypes.rst
index 02a5500e81..eb0bcf4ae2 100644
--- a/Doc/library/ctypes.rst
+++ b/Doc/library/ctypes.rst
@@ -1175,7 +1175,7 @@ Keep in mind that retrieving sub-objects from Structure, Unions, and Arrays
doesn't *copy* the sub-object, instead it retrieves a wrapper object accessing
the root-object's underlying buffer.
-Another example that may behave different from what one would expect is this::
+Another example that may behave differently from what one would expect is this::
>>> s = c_char_p()
>>> s.value = b"abc def ghi"