Skip to content

Commit a8a89d9

Browse files
tkoeppejwakely
authored andcommitted
[pairs.pair, tuple.cnstr] Replace 'The constructor initializes' with just 'Initializes', which is how we say it in many other places. (#1206)
1 parent 663498e commit a8a89d9

File tree

1 file changed

+14
-15
lines changed

1 file changed

+14
-15
lines changed

source/utilities.tex

Lines changed: 14 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -952,8 +952,7 @@
952952
\begin{itemdescr}
953953
\pnum
954954
\effects
955-
The constructor initializes \tcode{first} with \tcode{x} and \tcode{second}
956-
with \tcode{y}.
955+
Initializes \tcode{first} with \tcode{x} and \tcode{second} with \tcode{y}.
957956

958957
\pnum
959958
\remarks This constructor shall not participate in overload resolution
@@ -972,9 +971,9 @@
972971
\begin{itemdescr}
973972
\pnum
974973
\effects
975-
The constructor initializes \tcode{first} with
974+
Initializes \tcode{first} with
976975
\tcode{std::forward<U1>(x)} and \tcode{second}
977-
with \tcode{std::forward<\brk{}U2>(y)}.
976+
with \tcode{std::forward<U2>(y)}.
978977

979978
\pnum
980979
\remarks
@@ -994,7 +993,7 @@
994993
\begin{itemdescr}
995994
\pnum
996995
\effects
997-
The constructor initializes members from the corresponding members of the argument.
996+
Initializes members from the corresponding members of the argument.
998997

999998
\pnum
1000999
\remarks This constructor shall not participate in overload resolution unless
@@ -1013,10 +1012,10 @@
10131012
\begin{itemdescr}
10141013
\pnum
10151014
\effects
1016-
The constructor initializes \tcode{first} with
1015+
Initializes \tcode{first} with
10171016
\tcode{std::forward<U1>(p.first)}
10181017
and \tcode{second} with
1019-
\tcode{std::\brk{}forward<U2>(p.second)}.
1018+
\tcode{std::forward<U2>(\brk{}p.second)}.
10201019

10211020
\pnum
10221021
\remarks This constructor shall not participate in overload resolution unless
@@ -1039,7 +1038,7 @@
10391038
and \tcode{is_constructible_v<sec\-ond_type, Args2\&\&...>} is \tcode{true}.
10401039

10411040
\pnum
1042-
\effects The constructor initializes \tcode{first} with arguments of types
1041+
\effects Initializes \tcode{first} with arguments of types
10431042
\tcode{Args1...} obtained by forwarding the elements of \tcode{first_args}
10441043
and initializes \tcode{second} with arguments of types \tcode{Args2...}
10451044
obtained by forwarding the elements of \tcode{second_args}. (Here, forwarding
@@ -1599,7 +1598,7 @@
15991598

16001599
\begin{itemdescr}
16011600
\pnum
1602-
\effects The constructor initializes each element with the value of the
1601+
\effects Initializes each element with the value of the
16031602
corresponding parameter.
16041603

16051604
\pnum
@@ -1618,8 +1617,8 @@
16181617

16191618
\begin{itemdescr}
16201619
\pnum
1621-
\effects The constructor initializes the elements in the tuple with the
1622-
corresponding value in \tcode{std::for\-ward<UTypes>(u)}.
1620+
\effects Initializes the elements in the tuple with the
1621+
corresponding value in \tcode{std::forward<UTypes>(u)}.
16231622

16241623
\pnum
16251624
\remarks This constructor shall not participate in overload resolution unless
@@ -1665,7 +1664,7 @@
16651664

16661665
\begin{itemdescr}
16671666
\pnum
1668-
\effects The constructor initializes each element of \tcode{*this}
1667+
\effects Initializes each element of \tcode{*this}
16691668
with the corresponding element of \tcode{u}.
16701669

16711670
\pnum
@@ -1693,7 +1692,7 @@
16931692

16941693
\begin{itemdescr}
16951694
\pnum
1696-
\effects For all $i$, the constructor
1695+
\effects For all $i$,
16971696
initializes the $i^\text{th}$ element of \tcode{*this} with
16981697
\tcode{std::forward<U$_i$>(get<$i$>(u))}.
16991698

@@ -1724,7 +1723,7 @@
17241723

17251724
\begin{itemdescr}
17261725
\pnum
1727-
\effects The constructor initializes the first element with \tcode{u.first} and the
1726+
\effects Initializes the first element with \tcode{u.first} and the
17281727
second element with \tcode{u.second}.
17291728

17301729
\pnum
@@ -1747,7 +1746,7 @@
17471746

17481747
\begin{itemdescr}
17491748
\pnum
1750-
\effects The constructor initializes the first element with
1749+
\effects Initializes the first element with
17511750
\tcode{std::forward<U1>(u.first)} and the
17521751
second element with \tcode{std::forward<U2>(u.second)}.
17531752

0 commit comments

Comments
 (0)