summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatti Picus <matti.picus@gmail.com>2019-10-29 15:10:11 +0200
committerGitHub <noreply@github.com>2019-10-29 15:10:11 +0200
commit1a7c11ee6b4297eb146295918abc86d9151930fc (patch)
treec4609bd5aac0cf78e8c885b113dc6ba67f60f916
parentf8bf0cab75c63dd0e65b5d7a7176f605e105ae46 (diff)
downloadnumpy-1a7c11ee6b4297eb146295918abc86d9151930fc.tar.gz
NEP: fix typo
Co-Authored-By: Hameer Abbasi <einstein.edison@gmail.com>
-rw-r--r--doc/neps/nep-0034.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/neps/nep-0034.rst b/doc/neps/nep-0034.rst
index f1606dd6b..d9a9c62f2 100644
--- a/doc/neps/nep-0034.rst
+++ b/doc/neps/nep-0034.rst
@@ -51,7 +51,7 @@ users will have to change code like::
to::
- np.assert_equal(a, np.array([[1, 2], 3], dtype=object)
+ np.assert_equal(a, np.array([[1, 2], 3], dtype=object))
Detailed description
--------------------