diff options
author | endolith <endolith@gmail.com> | 2015-08-02 17:41:41 -0400 |
---|---|---|
committer | endolith <endolith@gmail.com> | 2015-08-02 17:41:41 -0400 |
commit | 1ac821f6b20aef494ab05cd6da6ea92715f14a00 (patch) | |
tree | 5af2f462599e9d8c2814ce6cc344bffda96e57ba | |
parent | 3ee2cb320f24250c80d97761b4e4e62bc407e719 (diff) | |
download | numpy-1ac821f6b20aef494ab05cd6da6ea92715f14a00.tar.gz |
DOC: fix typo
allclose instead of allcose
-rw-r--r-- | doc/release/1.10.0-notes.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/release/1.10.0-notes.rst b/doc/release/1.10.0-notes.rst index c6d88bda4..1d98195a8 100644 --- a/doc/release/1.10.0-notes.rst +++ b/doc/release/1.10.0-notes.rst @@ -300,7 +300,7 @@ what was provided by *np.allclose*. *np.allclose* uses *np.isclose* internally. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -*np.allcose* now uses *np.isclose* internally and inherits the ability to +*np.allclose* now uses *np.isclose* internally and inherits the ability to compare NaNs as equal by setting ``equal_nan=True``. Subclasses, such as *np.ma.MaskedArray*, are also preserved now. |