diff options
Diffstat (limited to 'numpy')
-rw-r--r-- | numpy/core/code_generators/ufunc_docstrings.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/code_generators/ufunc_docstrings.py b/numpy/core/code_generators/ufunc_docstrings.py index 8d7b83239..1b666f098 100644 --- a/numpy/core/code_generators/ufunc_docstrings.py +++ b/numpy/core/code_generators/ufunc_docstrings.py @@ -46,7 +46,7 @@ add_newdoc('numpy.core.umath', 'absolute', >>> import matplotlib.pyplot as plt - >>> x = np.linspace(-10, 10, 101) + >>> x = np.linspace(-10, 10, 10) >>> plt.plot(x, np.absolute(x)) >>> plt.show() |