diff options
author | MSeifert04 <michaelseifert04@yahoo.de> | 2019-07-06 21:04:16 +0200 |
---|---|---|
committer | MSeifert04 <michaelseifert04@yahoo.de> | 2019-07-06 21:04:16 +0200 |
commit | 723a67a4ac8facfd30c75a7c2380b3f08d76d03c (patch) | |
tree | 714d597c3cc02bc26493f0e796a8010c657041d5 /numpy/doc/ufuncs.py | |
parent | 57b16ed568581c33d0a6b6d3d4254dce3b67b321 (diff) | |
download | numpy-723a67a4ac8facfd30c75a7c2380b3f08d76d03c.tar.gz |
DOC: Fix wrong spelling of ufunc
Diffstat (limited to 'numpy/doc/ufuncs.py')
-rw-r--r-- | numpy/doc/ufuncs.py | 4 |
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 +) |