Skip to content

Commit

Permalink
Remove unnecessary commas
Browse files Browse the repository at this point in the history
Signed-off-by: Dmitriy Sobolev <dmitriy.sobolev@intel.com>
  • Loading branch information
dmitriy-sobolev committed Sep 3, 2024
1 parent a21e7e2 commit 13dbb96
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions source/elements/oneDPL/source/parallel_api.rst
Original file line number Diff line number Diff line change
Expand Up @@ -708,8 +708,8 @@ two iterators ``i`` and ``j`` to the sorted sequence of keys such that ``i`` pre
``comp(*j, *i) == false``.
If no ``comp`` object is provided, keys are sorted with respect to ``std::less``.

Sorting is unstable. That means, keys, which do not precede one another with respect to the given
comparator, and their associated values might be ordered arbitrarily relative to each other.
Sorting is unstable. That means, keys which do not precede one another with respect to the given
comparator and their associated values might be ordered arbitrarily relative to each other.

``KeyIt`` and ``ValueIt`` must satisfy the requirements of ``ValueSwappable``,
and ``Comparator`` must satisfy the requirements for the ``Compare`` parameter of ``std::sort``,
Expand All @@ -735,8 +735,8 @@ two iterators ``i`` and ``j`` to the sorted sequence of keys such that ``i`` pre
``comp(*j, *i) == false``.
If no ``comp`` object is provided, keys are sorted with respect to ``std::less``.

Sorting is stable. That means, keys, which do not precede one another with respect to the given
comparator, and their associated values maintain the relative order as in the original sequences.
Sorting is stable. That means, keys which do not precede one another with respect to the given
comparator and their associated values maintain the relative order as in the original sequences.

``KeyIt`` and ``ValueIt`` must satisfy the requirements of ``ValueSwappable``,
and ``Comparator`` must satisfy the requirements for the ``Compare`` parameter of ``std::sort``,
Expand Down

0 comments on commit 13dbb96

Please sign in to comment.