summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2011-05-20 12:04:38 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2011-05-20 12:04:38 (GMT)
commit52f63eabeb324dd3f262257626bf5cdcfefee6c0 (patch)
tree19abf84568d683f01e4f208ad488917faf0e52ff /Doc
parent22d8f7b9b80cf4f89ad2c383e566f8fd1c6d5e52 (diff)
downloadcpython-52f63eabeb324dd3f262257626bf5cdcfefee6c0.zip
cpython-52f63eabeb324dd3f262257626bf5cdcfefee6c0.tar.gz
cpython-52f63eabeb324dd3f262257626bf5cdcfefee6c0.tar.bz2
#12072: add missing parenthesis in the doc. Patch by Sandro Tosi.
Diffstat (limited to 'Doc')
-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 a75b07b..21e8c4a 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.