summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorArmin Rigo <arigo@tunes.org>2019-07-19 22:45:25 +0200
committerArmin Rigo <arigo@tunes.org>2019-07-19 22:45:25 +0200
commit1e23dd09b5466a10ee2d4cf313689c1f9d90b36b (patch)
tree67b710318e3159464566972c70ad89580011b20c /doc
parenta5452f15828d44fa18bec4f4b849efcd2255b37f (diff)
downloadcffi-1e23dd09b5466a10ee2d4cf313689c1f9d90b36b.tar.gz
improve comment
Diffstat (limited to 'doc')
-rw-r--r--doc/source/whatsnew.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/source/whatsnew.rst b/doc/source/whatsnew.rst
index 0324627..a9b42d9 100644
--- a/doc/source/whatsnew.rst
+++ b/doc/source/whatsnew.rst
@@ -8,7 +8,7 @@ v1.13
* ``ffi.from_buffer("type *", ..)`` is now supported, in addition to
``"type[]"``. You can then write ``p.field`` to access the items, instead
- of ``p[0].field``. Be careful that no bounds checking is performed, so
+ of only ``p[0].field``. Be careful that no bounds checking is performed, so
``p[n]`` might access data out of bounds.
* fix for structs containing unnamed bitfields like ``int : 1;``.