summaryrefslogtreecommitdiff
path: root/numpy/core/numeric.py
diff options
context:
space:
mode:
authorMatti Picus <matti.picus@gmail.com>2018-07-01 21:42:09 -0500
committerGitHub <noreply@github.com>2018-07-01 21:42:09 -0500
commit47d5ff9039860548fd1e840c4045ab54f5e154c9 (patch)
treeadb53c5b9be1cce06be33755d94e50dca5319905 /numpy/core/numeric.py
parent882a7f02f502cd49b100231b8faa87dcb86aac34 (diff)
parente9bf4aefc982341c106a05e1db60054bc1c5957c (diff)
downloadnumpy-47d5ff9039860548fd1e840c4045ab54f5e154c9.tar.gz
Merge pull request #11444 from silenc3r/patch-1
DOC: Fix documentation for fromfunction
Diffstat (limited to 'numpy/core/numeric.py')
-rw-r--r--numpy/core/numeric.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/numeric.py b/numpy/core/numeric.py
index 106f0ccfe..b49a7f551 100644
--- a/numpy/core/numeric.py
+++ b/numpy/core/numeric.py
@@ -1897,7 +1897,7 @@ def fromfunction(function, shape, **kwargs):
The result of the call to `function` is passed back directly.
Therefore the shape of `fromfunction` is completely determined by
`function`. If `function` returns a scalar value, the shape of
- `fromfunction` would match the `shape` parameter.
+ `fromfunction` would not match the `shape` parameter.
See Also
--------