diff options
author | Jaime <jaime.frio@gmail.com> | 2016-01-25 12:36:48 +0100 |
---|---|---|
committer | Jaime <jaime.frio@gmail.com> | 2016-01-25 12:36:48 +0100 |
commit | e0acd3fea475429070ff5682225b00aa8f3dbbcf (patch) | |
tree | 290411b3625a3cbed9713a006c53d234d723c5c7 /doc/source/reference/arrays.ndarray.rst | |
parent | d641eedd8214d89719ea8e0fa488232a1aae86bd (diff) | |
parent | df9df7f7e8340f9389543a4389022c07dbaf2e0d (diff) | |
download | numpy-e0acd3fea475429070ff5682225b00aa8f3dbbcf.tar.gz |
Merge pull request #7114 from dongjoon-hyun/fix_typos_in_doc
MAINT: Fix typos in docs
Diffstat (limited to 'doc/source/reference/arrays.ndarray.rst')
-rw-r--r-- | doc/source/reference/arrays.ndarray.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/source/reference/arrays.ndarray.rst b/doc/source/reference/arrays.ndarray.rst index 0f5fb92d7..201d01277 100644 --- a/doc/source/reference/arrays.ndarray.rst +++ b/doc/source/reference/arrays.ndarray.rst @@ -467,7 +467,7 @@ Truth value of an array (:func:`bool()`): Truth-value testing of an array invokes :meth:`ndarray.__nonzero__`, which raises an error if the number of - elements in the the array is larger than 1, because the truth value + elements in the array is larger than 1, because the truth value of such arrays is ambiguous. Use :meth:`.any() <ndarray.any>` and :meth:`.all() <ndarray.all>` instead to be clear about what is meant in such cases. (If the number of elements is 0, the array evaluates |