diff options
author | Michael Seifert <michaelseifert04@yahoo.de> | 2016-02-18 14:21:14 +0100 |
---|---|---|
committer | Michael Seifert <michaelseifert04@yahoo.de> | 2016-02-18 14:21:14 +0100 |
commit | 61a9a949bc746c5fa2f83ec594f2b477ab967bb8 (patch) | |
tree | 8f8b103952f0c7f527c1d0564d4ff66d82b70d74 | |
parent | a2f5392472d5fbdfc3706172519fdbfa73ed7d50 (diff) | |
download | numpy-61a9a949bc746c5fa2f83ec594f2b477ab967bb8.tar.gz |
DOC: apply_along_axis missing whitespace inserted before colon
The missing whitespace lead to inconsistent rendering in the
online documentation. [ci skip]
-rw-r--r-- | numpy/lib/shape_base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/lib/shape_base.py b/numpy/lib/shape_base.py index 63f4db68e..7533f798f 100644 --- a/numpy/lib/shape_base.py +++ b/numpy/lib/shape_base.py @@ -35,7 +35,7 @@ def apply_along_axis(func1d, axis, arr, *args, **kwargs): Input array. args : any Additional arguments to `func1d`. - kwargs: any + kwargs : any Additional named arguments to `func1d`. .. versionadded:: 1.9.0 |