Skip to content

Commit 2f335cd

Browse files
authored
Update docstrings for sorting functions (#2375)
The PR updates docstrings for sorting functions to have a blank line prior `Default` value.
1 parent 337becf commit 2f335cd

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

dpnp/dpnp_iface_sorting.py

+8
Original file line numberDiff line numberDiff line change
@@ -110,22 +110,26 @@ def argsort(
110110
axis : {None, int}, optional
111111
Axis along which to sort. If ``None``, the array is flattened before
112112
sorting. The default is ``-1``, which sorts along the last axis.
113+
113114
Default: ``-1``.
114115
kind : {None, "stable", "mergesort", "radixsort"}, optional
115116
Sorting algorithm. The default is ``None``, which uses parallel
116117
merge-sort or parallel radix-sort algorithms depending on the array
117118
data type.
119+
118120
Default: ``None``.
119121
descending : bool, optional
120122
Sort order. If ``True``, the array must be sorted in descending order
121123
(by value). If ``False``, the array must be sorted in ascending order
122124
(by value).
125+
123126
Default: ``False``.
124127
stable : {None, bool}, optional
125128
Sort stability. If ``True``, the returned array will maintain the
126129
relative order of `a` values which compare as equal. The same behavior
127130
applies when set to ``False`` or ``None``.
128131
Internally, this option selects ``kind="stable"``.
132+
129133
Default: ``None``.
130134
131135
Returns
@@ -251,22 +255,26 @@ def sort(a, axis=-1, kind=None, order=None, *, descending=False, stable=None):
251255
axis : {None, int}, optional
252256
Axis along which to sort. If ``None``, the array is flattened before
253257
sorting. The default is ``-1``, which sorts along the last axis.
258+
254259
Default: ``-1``.
255260
kind : {None, "stable", "mergesort", "radixsort"}, optional
256261
Sorting algorithm. The default is ``None``, which uses parallel
257262
merge-sort or parallel radix-sort algorithms depending on the array
258263
data type.
264+
259265
Default: ``None``.
260266
descending : bool, optional
261267
Sort order. If ``True``, the array must be sorted in descending order
262268
(by value). If ``False``, the array must be sorted in ascending order
263269
(by value).
270+
264271
Default: ``False``.
265272
stable : {None, bool}, optional
266273
Sort stability. If ``True``, the returned array will maintain the
267274
relative order of `a` values which compare as equal. The same behavior
268275
applies when set to ``False`` or ``None``.
269276
Internally, this option selects ``kind="stable"``.
277+
270278
Default: ``None``.
271279
272280
Returns

dpnp/dpnp_iface_statistics.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -837,7 +837,7 @@ def cov(
837837
>>> import dpnp as np
838838
>>> x = np.array([[0, 2], [1, 1], [2, 0]]).T
839839
840-
Consider two variables, :math:`x_0` and :math:`x_1`, which correlate
840+
Consider two variables, :math:`x_0` and :math:`x_1`, which correlate
841841
perfectly, but in opposite directions:
842842
843843
>>> x

0 commit comments

Comments
 (0)