From 13dbb96a8a586b46da55371d8f32cd43f9e8bd4c Mon Sep 17 00:00:00 2001 From: Dmitriy Sobolev Date: Tue, 3 Sep 2024 18:48:50 +0100 Subject: [PATCH] Remove unnecessary commas Signed-off-by: Dmitriy Sobolev --- source/elements/oneDPL/source/parallel_api.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/source/elements/oneDPL/source/parallel_api.rst b/source/elements/oneDPL/source/parallel_api.rst index b5572d7845..59afe80732 100644 --- a/source/elements/oneDPL/source/parallel_api.rst +++ b/source/elements/oneDPL/source/parallel_api.rst @@ -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``, @@ -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``,