From: Ezio Melotti Date: Fri, 20 May 2011 12:04:38 +0000 (+0300) Subject: #12072: add missing parenthesis in the doc. Patch by Sandro Tosi. X-Git-Tag: v3.1.4rc1~24 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=261d855fd6e67bfe04aaaabfaff27f091b6d008f;p=thirdparty%2FPython%2Fcpython.git #12072: add missing parenthesis in the doc. Patch by Sandro Tosi. --- diff --git a/Doc/c-api/buffer.rst b/Doc/c-api/buffer.rst index 094f7f2239fa..37866b7dbdc5 100644 --- a/Doc/c-api/buffer.rst +++ b/Doc/c-api/buffer.rst @@ -316,7 +316,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.