From fffb1d747330434e87bc24e915692cd86f4f75a5 Mon Sep 17 00:00:00 2001 From: Ekaterina Tuzova Date: Mon, 16 May 2016 20:02:57 +0300 Subject: DOC : minor changes to linspace docstring added optional flag to the step --- numpy/core/function_base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'numpy/core/function_base.py') diff --git a/numpy/core/function_base.py b/numpy/core/function_base.py index 750fbe838..5b1237a32 100644 --- a/numpy/core/function_base.py +++ b/numpy/core/function_base.py @@ -58,7 +58,7 @@ def linspace(start, stop, num=50, endpoint=True, retstep=False, dtype=None): There are `num` equally spaced samples in the closed interval ``[start, stop]`` or the half-open interval ``[start, stop)`` (depending on whether `endpoint` is True or False). - step : float + step : float, optional Only returned if `retstep` is True Size of spacing between samples. -- cgit v1.2.1