Skip to content

Commit 21b2767

Browse files
authored
Merge pull request #1242 from IntelPython/docs-changes-elementwise
Adjusts wording of comparison function docs
2 parents 81553f8 + 5af4637 commit 21b2767

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

dpctl/tensor/_elementwise_funcs.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,7 @@
304304
_greater_docstring_ = """
305305
greater(x1, x2, out=None, order='K')
306306
Computes the greater-than test results for each element `x1_i` of
307-
the input array `x1` the respective element `x2_i` of the input array `x2`.
307+
the input array `x1` with the respective element `x2_i` of the input array `x2`.
308308
Args:
309309
x1 (usm_ndarray):
310310
First input array, expected to have numeric data type.
@@ -331,7 +331,7 @@
331331
_greater_equal_docstring_ = """
332332
greater_equal(x1, x2, out=None, order='K')
333333
Computes the greater-than or equal-to test results for each element `x1_i` of
334-
the input array `x1` the respective element `x2_i` of the input array `x2`.
334+
the input array `x1` with the respective element `x2_i` of the input array `x2`.
335335
Args:
336336
x1 (usm_ndarray):
337337
First input array, expected to have numeric data type.
@@ -465,7 +465,7 @@
465465
less(x1, x2, out=None, order='K')
466466
467467
Computes the less-than test results for each element `x1_i` of
468-
the input array `x1` the respective element `x2_i` of the input array `x2`.
468+
the input array `x1` with the respective element `x2_i` of the input array `x2`.
469469
470470
Args:
471471
x1 (usm_ndarray):
@@ -493,7 +493,7 @@
493493
_less_equal_docstring_ = """
494494
less_equal(x1, x2, out=None, order='K')
495495
Computes the less-than or equal-to test results for each element `x1_i` of
496-
the input array `x1` the respective element `x2_i` of the input array `x2`.
496+
the input array `x1` with the respective element `x2_i` of the input array `x2`.
497497
Args:
498498
x1 (usm_ndarray):
499499
First input array, expected to have numeric data type.

0 commit comments

Comments
 (0)