summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornjsmith <njs@pobox.com>2012-06-20 08:45:09 -0700
committernjsmith <njs@pobox.com>2012-06-20 08:45:09 -0700
commit651ef74c4ebe7d24e727fd444b1985117ef16fae (patch)
treeb1c173c3faca22b04cb4a60c9bf328005565440a
parent36681eb2c4b731d5f8e639607aff41404aa8fc45 (diff)
parent493f23d4a7215b14af62b64f6fc7f9f524099795 (diff)
downloadnumpy-with_maskna.tar.gz
Merge pull request #313 from endolith/patch-1with_masknawith_maskna
fix typos
-rw-r--r--numpy/core/function_base.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/core/function_base.py b/numpy/core/function_base.py
index 3e919c761..d01251509 100644
--- a/numpy/core/function_base.py
+++ b/numpy/core/function_base.py
@@ -44,7 +44,7 @@ def linspace(start, stop, num=50, endpoint=True, retstep=False, maskna=False):
See Also
--------
- arange : Similiar to `linspace`, but uses a step size (instead of the
+ arange : Similar to `linspace`, but uses a step size (instead of the
number of samples).
logspace : Samples uniformly distributed in log space.
@@ -126,7 +126,7 @@ def logspace(start,stop,num=50,endpoint=True,base=10.0, maskna=False):
See Also
--------
- arange : Similiar to linspace, with the step size specified instead of the
+ arange : Similar to linspace, with the step size specified instead of the
number of samples. Note that, when used with a float endpoint, the
endpoint may or may not be included.
linspace : Similar to logspace, but with the samples uniformly distributed