Skip to content

Commit 60fde3e

Browse files
committed
Fix #22
1 parent 18b8a38 commit 60fde3e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

lab/generic.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ def _jit_run(
193193
compilation_cache: dict,
194194
jit_kw_args: dict,
195195
*args: Union[Numeric, RandomState],
196-
**kw_args
196+
**kw_args,
197197
): # pragma: no cover
198198
pass
199199

@@ -1488,7 +1488,7 @@ def sort(a: Numeric, axis: Int = -1, descending: bool = False):
14881488
@dispatch
14891489
@abstract()
14901490
def argsort(a: Numeric, axis: Int = -1, descending: bool = False):
1491-
"""Get the indices that would a tensor along an axis in ascending order.
1491+
"""Get the indices that would sort a tensor along an axis in ascending order.
14921492
14931493
Args:
14941494
a (tensor): Tensor to sort.

0 commit comments

Comments
 (0)