diff options
Diffstat (limited to 'doc/source')
-rw-r--r-- | doc/source/dev/index.rst | 2 | ||||
-rw-r--r-- | doc/source/reference/c-api/array.rst | 2 | ||||
-rw-r--r-- | doc/source/user/tutorial-svd.rst | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/doc/source/dev/index.rst b/doc/source/dev/index.rst index c3f880a35..dc6099992 100644 --- a/doc/source/dev/index.rst +++ b/doc/source/dev/index.rst @@ -84,7 +84,7 @@ Here's the short summary, complete TOC links are below: * Enter your GitHub username and password (repeat contributors or advanced users can remove this step by connecting to GitHub with - :ref:`SSH<set-up-and-configure-a-github-account>` . + :ref:`SSH<set-up-and-configure-a-github-account>`). * Go to GitHub. The new branch will show up with a green Pull Request button. Make sure the title and message are clear, concise, and self- diff --git a/doc/source/reference/c-api/array.rst b/doc/source/reference/c-api/array.rst index 22b15fc57..83289010b 100644 --- a/doc/source/reference/c-api/array.rst +++ b/doc/source/reference/c-api/array.rst @@ -3026,7 +3026,7 @@ Other conversions .. code-block:: c - #define error_converting(x) (((x) == -1) && PyErr_Occurred() + #define error_converting(x) (((x) == -1) && PyErr_Occurred()) .. c:function:: npy_intp PyArray_PyIntAsIntp(PyObject* op) diff --git a/doc/source/user/tutorial-svd.rst b/doc/source/user/tutorial-svd.rst index e1918f394..086e0a6de 100644 --- a/doc/source/user/tutorial-svd.rst +++ b/doc/source/user/tutorial-svd.rst @@ -455,7 +455,7 @@ and :include-source: 0 should give you an image indistinguishable from the original one (although we -may introduce floating point errors for this reconstruction. In fact, +may introduce floating point errors for this reconstruction). In fact, you might see a warning message saying `"Clipping input data to the valid range for imshow with RGB data ([0..1] for floats or [0..255] for integers)."` This is expected from the manipulation we just did on the original |