summaryrefslogtreecommitdiff
path: root/Doc/library/ctypes.rst
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2008-07-13 21:43:25 +0000
committerAndrew M. Kuchling <amk@amk.ca>2008-07-13 21:43:25 +0000
commit00f34c69b39ab9d2a897f2ecf83003d066bcf505 (patch)
tree82df03d8c84ed1c9dcfdf4ccddce57d4d34c2b87 /Doc/library/ctypes.rst
parent8d412f36b5808892d6c7aa0706f2fa6f1505f8f6 (diff)
downloadcpython-git-00f34c69b39ab9d2a897f2ecf83003d066bcf505.tar.gz
Re-word
Diffstat (limited to 'Doc/library/ctypes.rst')
-rw-r--r--Doc/library/ctypes.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/ctypes.rst b/Doc/library/ctypes.rst
index 5a10f82191..9b6b86e75b 100644
--- a/Doc/library/ctypes.rst
+++ b/Doc/library/ctypes.rst
@@ -1791,8 +1791,8 @@ Utility functions
.. function:: byref(obj[, offset])
Returns a light-weight pointer to ``obj``, which must be an
- instance of a ctypes type. ``offset`` defaults to zero, it must be
- an integer which is added to the internal pointer value.
+ instance of a ctypes type. ``offset`` defaults to zero, and must be
+ an integer that will be added to the internal pointer value.
``byref(obj, offset)`` corresponds to this C code::