summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2019-07-08 08:51:13 -0700
committerGitHub <noreply@github.com>2019-07-08 08:51:13 -0700
commitaf5a108475fe1969f2b5ee2e0ec81ddc278f6437 (patch)
treea011caa7de7d8a4b0868efc9c198d72f3d143527
parent48efcc75f094329caf61c753827e76a3c19deff8 (diff)
parent723a67a4ac8facfd30c75a7c2380b3f08d76d03c (diff)
downloadnumpy-af5a108475fe1969f2b5ee2e0ec81ddc278f6437.tar.gz
Merge pull request #13925 from MSeifert04/fix-typo-unfunc
MAINT: Fix wrong spelling of ufunc
-rw-r--r--numpy/doc/ufuncs.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/doc/ufuncs.py b/numpy/doc/ufuncs.py
index a112e559c..df2c455ec 100644
--- a/numpy/doc/ufuncs.py
+++ b/numpy/doc/ufuncs.py
@@ -13,9 +13,9 @@ example is the addition operator: ::
>>> np.array([0,2,3,4]) + np.array([1,1,-1,2])
array([1, 3, 2, 6])
-The unfunc module lists all the available ufuncs in numpy. Documentation on
+The ufunc module lists all the available ufuncs in numpy. Documentation on
the specific ufuncs may be found in those modules. This documentation is
-intended to address the more general aspects of unfuncs common to most of
+intended to address the more general aspects of ufuncs common to most of
them. All of the ufuncs that make use of Python operators (e.g., +, -, etc.)
have equivalent functions defined (e.g. add() for +)