diff options
Diffstat (limited to 'doc/source/reference')
-rw-r--r-- | doc/source/reference/arrays.dtypes.rst | 2 | ||||
-rw-r--r-- | doc/source/reference/c-api.ufunc.rst | 2 | ||||
-rw-r--r-- | doc/source/reference/ufuncs.rst | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/doc/source/reference/arrays.dtypes.rst b/doc/source/reference/arrays.dtypes.rst index 031fb6529..dcf04b453 100644 --- a/doc/source/reference/arrays.dtypes.rst +++ b/doc/source/reference/arrays.dtypes.rst @@ -186,7 +186,7 @@ Built-in Python types ================ =============== Note that ``str`` refers to either null terminated bytes or unicode strings - depending on the Python version. In code targetting both Python 2 and 3 + depending on the Python version. In code targeting both Python 2 and 3 ``np.unicode_`` should be used as a dtype for strings. See :ref:`Note on string types<string-dtype-note>`. diff --git a/doc/source/reference/c-api.ufunc.rst b/doc/source/reference/c-api.ufunc.rst index b5e8b92d7..79ad256f5 100644 --- a/doc/source/reference/c-api.ufunc.rst +++ b/doc/source/reference/c-api.ufunc.rst @@ -200,7 +200,7 @@ Functions or :c:data:`Py_None`. The callable object will only be used if :c:data:`UFUNC_ERR_CALL` is set as the desired error checking method. This routine manages the GIL and is safe to call even - after releasing the GIL. If an error in the IEEE-compatibile + after releasing the GIL. If an error in the IEEE-compatible hardware is determined a -1 is returned, otherwise a 0 is returned. diff --git a/doc/source/reference/ufuncs.rst b/doc/source/reference/ufuncs.rst index e82571f6c..34ad36a0b 100644 --- a/doc/source/reference/ufuncs.rst +++ b/doc/source/reference/ufuncs.rst @@ -177,7 +177,7 @@ Casting Rules .. note:: In NumPy 1.6.0, a type promotion API was created to encapsulate the - mechansim for determining output types. See the functions + mechanism for determining output types. See the functions :func:`result_type`, :func:`promote_types`, and :func:`min_scalar_type` for more details. |