diff options
Diffstat (limited to 'Doc/library/array.rst')
-rw-r--r-- | Doc/library/array.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/array.rst b/Doc/library/array.rst index e4975c8..40655a5 100644 --- a/Doc/library/array.rst +++ b/Doc/library/array.rst @@ -103,7 +103,7 @@ The following data items and methods are also supported: memory buffer in bytes can be computed as ``array.buffer_info()[1] * array.itemsize``. This is occasionally useful when working with low-level (and inherently unsafe) I/O interfaces that require memory addresses, such as certain - :cfunc:`ioctl` operations. The returned numbers are valid as long as the array + :c:func:`ioctl` operations. The returned numbers are valid as long as the array exists and no length-changing operations are applied to it. .. note:: |