Skip to content

Commit d4766c3

Browse files
committed
fixed double Notes section in docstring of LArray.clip
1 parent ae18468 commit d4766c3

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

larray/core/array.py

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6038,10 +6038,6 @@ def clip(self, minval=None, maxval=None, out=None):
60386038
out : LArray, optional
60396039
The results will be placed in this array.
60406040
6041-
Notes
6042-
-----
6043-
At least either `minval` or `maxval` must be defined.
6044-
60456041
Returns
60466042
-------
60476043
LArray
@@ -6050,7 +6046,8 @@ def clip(self, minval=None, maxval=None, out=None):
60506046
60516047
Notes
60526048
-----
6053-
If `minval` and/or `maxval` are array_like, broadcast will occur between self, `minval` and `maxval`.
6049+
* At least either `minval` or `maxval` must be defined.
6050+
* If `minval` and/or `maxval` are array_like, broadcast will occur between self, `minval` and `maxval`.
60546051
60556052
Examples
60566053
--------

0 commit comments

Comments
 (0)