diff options
author | Matti Picus <matti.picus@gmail.com> | 2019-10-29 15:10:11 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-29 15:10:11 +0200 |
commit | 1a7c11ee6b4297eb146295918abc86d9151930fc (patch) | |
tree | c4609bd5aac0cf78e8c885b113dc6ba67f60f916 /doc/neps | |
parent | f8bf0cab75c63dd0e65b5d7a7176f605e105ae46 (diff) | |
download | numpy-1a7c11ee6b4297eb146295918abc86d9151930fc.tar.gz |
NEP: fix typo
Co-Authored-By: Hameer Abbasi <einstein.edison@gmail.com>
Diffstat (limited to 'doc/neps')
-rw-r--r-- | doc/neps/nep-0034.rst | 2 |
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 -------------------- |