Skip to content

Commit 2c1ff31

Browse files
committed
Use <cxx-notes> instead of <cxx-note> in <cxx-function> blocks.
1 parent 05edf7d commit 2c1ff31

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

algorithms.html

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -373,11 +373,11 @@ <h1>For each</h1>
373373
If <code>f</code> returns a result, the result is ignored.
374374
</cxx-remarks>
375375

376-
<cxx-note>
376+
<cxx-notes>
377377
Unlike its sequential form, the parallel overload of <code>for_each</code> does not return a copy of
378378
its <code>Function</code> parameter, since parallelization may not permit efficient state
379379
accumulation.
380-
</cxx-note>
380+
</cxx-notes>
381381
</cxx-function>
382382

383383
<cxx-function>
@@ -528,11 +528,11 @@ <h1>Reduce</h1>
528528
O(<code>last - first</code>) applications of <code>operator+</code>.
529529
</cxx-complexity>
530530

531-
<cxx-note>
531+
<cxx-notes>
532532
The primary difference between <code>reduce</code> and <code>accumulate</code> is that the behavior
533533
of <code>reduce</code> may be non-deterministic for non-associative or non-commutative
534534
<code>operator+</code>.
535-
</cxx-note>
535+
</cxx-notes>
536536
</cxx-function>
537537

538538
<cxx-function>
@@ -554,10 +554,10 @@ <h1>Reduce</h1>
554554
O(<code>last - first</code>) applications of <code>operator+</code>.
555555
</cxx-complexity>
556556

557-
<cxx-note>
557+
<cxx-notes>
558558
The primary difference between <code>reduce</code> and <code>accumulate</code> is that the behavior
559559
of <code>reduce</code> may be non-deterministic for non-associative or non-commutative <code>operator+</code>.
560-
</cxx-note>
560+
</cxx-notes>
561561
</cxx-function>
562562

563563
<cxx-function>
@@ -580,10 +580,10 @@ <h1>Reduce</h1>
580580
O(<code>last - first</code>) applications of <code>binary_op</code>.
581581
</cxx-complexity>
582582

583-
<cxx-note>
583+
<cxx-notes>
584584
The primary difference between <code>reduce</code> and <code>accumulate</code> is that the behavior
585585
of <code>reduce</code> may be non-deterministic for non-associative or non-commutative <code>binary_op</code>.
586-
</cxx-note>
586+
</cxx-notes>
587587
</cxx-function>
588588
</cxx-section>
589589

0 commit comments

Comments
 (0)