diff options
author | Michael Seifert <michaelseifert04@yahoo.de> | 2017-08-25 01:04:46 +0200 |
---|---|---|
committer | Michael Seifert <michaelseifert04@yahoo.de> | 2017-08-25 01:04:56 +0200 |
commit | 9fdf66066ce5084faa493559576fe6d23bf098f6 (patch) | |
tree | 35a4f638d52b1cab552278ed262dd4cdbf9efe5c /numpy/lib/function_base.py | |
parent | 52a7efe1f2d0be6adb75d09babe6f203906ecfcb (diff) | |
download | numpy-9fdf66066ce5084faa493559576fe6d23bf098f6.tar.gz |
DOC: rot90 wrongly positioned versionadded directive. [skip ci]
Diffstat (limited to 'numpy/lib/function_base.py')
-rw-r--r-- | numpy/lib/function_base.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/lib/function_base.py b/numpy/lib/function_base.py index b1ebcad67..93cbd69dd 100644 --- a/numpy/lib/function_base.py +++ b/numpy/lib/function_base.py @@ -56,8 +56,6 @@ def rot90(m, k=1, axes=(0,1)): Rotation direction is from the first towards the second axis. - .. versionadded:: 1.12.0 - Parameters ---------- m : array_like @@ -68,6 +66,8 @@ def rot90(m, k=1, axes=(0,1)): The array is rotated in the plane defined by the axes. Axes must be different. + .. versionadded:: 1.12.0 + Returns ------- y : ndarray |