summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2011-05-20 15:04:38 +0300
committerEzio Melotti <ezio.melotti@gmail.com>2011-05-20 15:04:38 +0300
commit8eb7dfc56c306cc700effe0ec38109541cf79a78 (patch)
treeea377a33f959b702a0a9d5e5d7d73deb13fc0773
parentaf7a070e2915b0a39cc85caf3fb683f5ba31d98f (diff)
downloadcpython-8eb7dfc56c306cc700effe0ec38109541cf79a78.tar.gz
#12072: add missing parenthesis in the doc. Patch by Sandro Tosi.
-rw-r--r--Doc/c-api/buffer.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/c-api/buffer.rst b/Doc/c-api/buffer.rst
index a75b07bf1c..21e8c4ab8a 100644
--- a/Doc/c-api/buffer.rst
+++ b/Doc/c-api/buffer.rst
@@ -276,7 +276,7 @@ Buffer related functions
.. cfunction:: void PyBuffer_FillContiguousStrides(int ndim, Py_ssize_t *shape, Py_ssize_t *strides, Py_ssize_t itemsize, char fortran)
Fill the *strides* array with byte-strides of a contiguous (C-style if
- *fortran* is ``'C'`` or Fortran-style if *fortran* is ``'F'`` array of the
+ *fortran* is ``'C'`` or Fortran-style if *fortran* is ``'F'``) array of the
given shape with the given number of bytes per element.