From e463bf9fba83f363953e86b7323640272b1f7260 Mon Sep 17 00:00:00 2001 From: Dan Hoeflinger Date: Fri, 16 Aug 2024 11:23:52 -0400 Subject: [PATCH] applying suggestion Signed-off-by: Dan Hoeflinger --- source/elements/oneDPL/source/parallel_api.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/elements/oneDPL/source/parallel_api.rst b/source/elements/oneDPL/source/parallel_api.rst index da000dc727..9245711fab 100644 --- a/source/elements/oneDPL/source/parallel_api.rst +++ b/source/elements/oneDPL/source/parallel_api.rst @@ -534,7 +534,7 @@ The elements of ``[start, end)`` must be partitioned with respect to the compara :code:`oneapi::dpl::histogram` computes the histogram over the data in :code:`[start, end)` by counting the number of elements that map to each of a set of bins and storing the counts into -:code:`[histogram_first, histogram_first + num_intervals)`. Input values that do not map to a defined +the output sequence starting from :code:`histogram_first`. Input values that do not map to a defined bin are skipped silently. The value type of :code:`OutputIt` must be an integral type of sufficient size to store the counts of the histogram without overflow.