From 52f63eabeb324dd3f262257626bf5cdcfefee6c0 Mon Sep 17 00:00:00 2001 From: Ezio Melotti Date: Fri, 20 May 2011 15:04:38 +0300 Subject: [PATCH] #12072: add missing parenthesis in the doc. Patch by Sandro Tosi. --- Doc/c-api/buffer.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/c-api/buffer.rst b/Doc/c-api/buffer.rst index a75b07bf1c5..21e8c4ab8a0 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.