Skip to content

Commit 22a3b44

Browse files
authored
[projected, alg.req.ind.{move, copy}, range.as.rvalue.overview] Article "an", not "a" (#6186)
The subsequent identifier is naturally pronounced with a leading vowel.
1 parent 39c1510 commit 22a3b44

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

source/algorithms.tex

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -436,7 +436,7 @@
436436
The behavior of a program is undefined if
437437
it invokes a vectorization-unsafe standard library function
438438
from user code
439-
called from a \tcode{execution::unsequenced_policy} algorithm.
439+
called from an \tcode{execution::unsequenced_policy} algorithm.
440440
\begin{note}
441441
Because \tcode{execution::unsequenced_policy} allows
442442
the execution of element access functions
@@ -523,7 +523,7 @@
523523
The behavior of a program is undefined if
524524
it invokes a vectorization-unsafe standard library function
525525
from user code
526-
called from a \tcode{execution::parallel_unsequenced_policy} algorithm.
526+
called from an \tcode{execution::parallel_unsequenced_policy} algorithm.
527527
\begin{note}
528528
Because \tcode{execution::parallel_unsequenced_policy} allows
529529
the execution of element access functions

source/iterators.tex

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2504,7 +2504,7 @@
25042504
\pnum
25052505
Class template \tcode{projected} is used to constrain algorithms
25062506
that accept callable objects and projections\iref{defns.projection}.
2507-
It combines a \libconcept{indirectly_readable} type \tcode{I} and
2507+
It combines an \libconcept{indirectly_readable} type \tcode{I} and
25082508
a callable object type \tcode{Proj} into a new \libconcept{indirectly_readable} type
25092509
whose \tcode{reference} type is the result of applying
25102510
\tcode{Proj} to the \tcode{iter_reference_t} of \tcode{I}.
@@ -2557,7 +2557,7 @@
25572557

25582558
\pnum
25592559
The \libconcept{indirectly_movable} concept specifies the relationship between
2560-
a \libconcept{indirectly_readable} type and a \libconcept{indirectly_writable} type
2560+
an \libconcept{indirectly_readable} type and an \libconcept{indirectly_writable} type
25612561
between which values may be moved.
25622562

25632563
\begin{codeblock}
@@ -2599,7 +2599,7 @@
25992599

26002600
\pnum
26012601
The \libconcept{indirectly_copyable} concept specifies the relationship between
2602-
a \libconcept{indirectly_readable} type and a \libconcept{indirectly_writable} type
2602+
an \libconcept{indirectly_readable} type and an \libconcept{indirectly_writable} type
26032603
between which values may be copied.
26042604

26052605
\begin{codeblock}

source/ranges.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4465,7 +4465,7 @@
44654465
\tcode{as_rvalue_view} presents a view of an underlying sequence
44664466
with the same behavior as the underlying sequence
44674467
except that its elements are rvalues.
4468-
Some generic algorithms can be called with a \tcode{as_rvalue_view}
4468+
Some generic algorithms can be called with an \tcode{as_rvalue_view}
44694469
to replace copying with moving.
44704470

44714471
\pnum

0 commit comments

Comments
 (0)