Skip to content

Commit 64333d2

Browse files
Eeliszygoloid
authored andcommitted
Capitalize after "Effects:"/"Returns:"/"Throws:"/"Requires:".
1 parent 9f16f5a commit 64333d2

File tree

6 files changed

+21
-21
lines changed

6 files changed

+21
-21
lines changed

source/iostreams.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11680,7 +11680,7 @@
1168011680

1168111681
\begin{itemdescr}
1168211682
\pnum
11683-
\returns a path whose pathname in the generic format is
11683+
\returns A path whose pathname in the generic format is
1168411684
the suffix of \tcode{filename()} not included in \tcode{stem()}.
1168511685

1168611686
\pnum

source/regex.tex

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1135,7 +1135,7 @@
11351135
\end{itemdecl}
11361136

11371137
\begin{itemdescr}
1138-
\pnum\returns a sequence of one or more characters that
1138+
\pnum\returns A sequence of one or more characters that
11391139
represents the collating element consisting of the character
11401140
sequence designated by the iterator range \range{first}{last}.
11411141
Returns an empty string if the character sequence is not a
@@ -1150,7 +1150,7 @@
11501150
\end{itemdecl}
11511151

11521152
\begin{itemdescr}
1153-
\pnum\returns an unspecified value that represents
1153+
\pnum\returns An unspecified value that represents
11541154
the character classification named by the character sequence
11551155
designated by the iterator range \range{first}{last}.
11561156
If the parameter \tcode{icase} is \tcode{true} then the returned mask identifies the
@@ -1238,7 +1238,7 @@
12381238
\requires The value of \tcode{radix} shall be 8, 10, or 16.
12391239

12401240
\pnum
1241-
\returns the value represented by the digit \tcode{ch} in base
1241+
\returns The value represented by the digit \tcode{ch} in base
12421242
\tcode{radix} if the character \tcode{ch} is a valid digit in base
12431243
\tcode{radix}; otherwise returns \tcode{-1}.
12441244
\end{itemdescr}
@@ -1257,7 +1257,7 @@
12571257
data held by \tcode{*this}. \end{note}
12581258

12591259
\pnum
1260-
\returns if no locale has been previously imbued then a copy of the
1260+
\returns If no locale has been previously imbued then a copy of the
12611261
global locale in effect at the time of construction of \tcode{*this},
12621262
otherwise a copy of the last argument passed to \tcode{imbue}.
12631263

@@ -1273,7 +1273,7 @@
12731273

12741274
\begin{itemdescr}
12751275
\pnum
1276-
\returns if no locale has been imbued then a copy of the global locale
1276+
\returns If no locale has been imbued then a copy of the global locale
12771277
in effect at the time of construction of \tcode{*this}, otherwise a copy of
12781278
the last argument passed to \tcode{imbue}.
12791279
\end{itemdescr}

source/strings.tex

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4376,7 +4376,7 @@
43764376

43774377
\begin{itemdescr}
43784378
\pnum
4379-
\effects the first two functions call \tcode{strtol(str.c_str(), ptr, base)},
4379+
\effects The first two functions call \tcode{strtol(str.c_str(), ptr, base)},
43804380
and the last three functions call \tcode{strtoul(str.c_str(), ptr, base)},
43814381
\tcode{strtoll(str.c_str(), ptr, base)}, and \tcode{strtoull(\brk{}str.c_str(), ptr,
43824382
base)}, respectively. Each function returns the converted result, if any. The
@@ -4473,7 +4473,7 @@
44734473

44744474
\begin{itemdescr}
44754475
\pnum
4476-
\effects the first two functions call \tcode{wcstol(str.c_str(), ptr, base)},
4476+
\effects The first two functions call \tcode{wcstol(str.c_str(), ptr, base)},
44774477
and the last three functions call \tcode{wcstoul(str.c_str(), ptr, base)},
44784478
\tcode{wcstoll(str.c_str(), ptr, base)}, and \tcode{wcstoull(\brk{}str.c_str(), ptr,
44794479
base)}, respectively. Each function returns the converted result, if any. The

source/support.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2592,7 +2592,7 @@
25922592

25932593
\begin{itemdescr}
25942594
\pnum
2595-
\effects constructs an object of class \tcode{bad_array_new_length}.
2595+
\effects Constructs an object of class \tcode{bad_array_new_length}.
25962596
\end{itemdescr}
25972597

25982598
\indexlibrarymember{what}{bad_array_new_length}%

source/threads.tex

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3972,7 +3972,7 @@
39723972

39733973
\begin{itemdescr}
39743974
\pnum
3975-
\effects constructs a \tcode{promise} object and a shared state. The second
3975+
\effects Constructs a \tcode{promise} object and a shared state. The second
39763976
constructor uses the allocator \tcode{a} to allocate memory for the shared
39773977
state.
39783978
\end{itemdescr}
@@ -3984,7 +3984,7 @@
39843984

39853985
\begin{itemdescr}
39863986
\pnum
3987-
\effects constructs a new \tcode{promise} object and transfers ownership of the shared state
3987+
\effects Constructs a new \tcode{promise} object and transfers ownership of the shared state
39883988
of \tcode{rhs} (if any) to the newly-constructed object.
39893989

39903990
\pnum
@@ -4382,7 +4382,7 @@
43824382
\end{itemize}
43834383

43844384
\pnum
4385-
\throws the stored exception, if an exception was stored in the shared state.
4385+
\throws The stored exception, if an exception was stored in the shared state.
43864386

43874387
\pnum
43884388
\postconditions \tcode{valid() == false}.
@@ -4698,7 +4698,7 @@
46984698
\end{itemize}
46994699

47004700
\pnum
4701-
\throws the stored exception, if an exception was stored in the shared state.
4701+
\throws The stored exception, if an exception was stored in the shared state.
47024702
\end{itemdescr}
47034703

47044704
\indexlibrarymember{valid}{shared_future}%
@@ -5142,7 +5142,7 @@
51425142
\returns A \tcode{future} object that shares the same shared state as \tcode{*this}.
51435143

51445144
\pnum
5145-
\throws a \tcode{future_error} object if an error occurs.
5145+
\throws A \tcode{future_error} object if an error occurs.
51465146

51475147
\pnum
51485148
\errors
@@ -5171,7 +5171,7 @@
51715171
the shared state of \tcode{*this} to become ready are unblocked.
51725172

51735173
\pnum
5174-
\throws a \tcode{future_error} exception object if there is no shared
5174+
\throws A \tcode{future_error} exception object if there is no shared
51755175
state or the stored task has already been invoked.
51765176

51775177
\pnum

source/utilities.tex

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8100,7 +8100,7 @@
81008100
\begin{itemdescr}
81018101
\pnum
81028102
\effects
8103-
constructs a \tcode{default_delete} object from another \tcode{default_delete<U[]>} object.
8103+
Constructs a \tcode{default_delete} object from another \tcode{default_delete<U[]>} object.
81048104

81058105
\pnum
81068106
\remarks
@@ -12529,7 +12529,7 @@
1252912529

1253012530
\begin{itemdescr}
1253112531
\pnum
12532-
\requires all of the types in \tcode{Args1} and \tcode{Args2} shall be
12532+
\requires All of the types in \tcode{Args1} and \tcode{Args2} shall be
1253312533
\tcode{CopyConstructible} (Table~\ref{tab:copyconstructible}).
1253412534

1253512535
\pnum
@@ -14414,7 +14414,7 @@
1441414414
\tcode{*this} targets a copy of \tcode{f.target()}.
1441514415

1441614416
\pnum
14417-
\throws shall not throw exceptions if \tcode{f}'s target is
14417+
\throws Shall not throw exceptions if \tcode{f}'s target is
1441814418
a specialization of \tcode{reference_wrapper} or
1441914419
a function pointer. Otherwise, may throw \tcode{bad_alloc}
1442014420
or any exception thrown by the copy constructor of the stored callable object.
@@ -14437,7 +14437,7 @@
1443714437
\tcode{f} is in a valid state with an unspecified value.
1443814438

1443914439
\pnum
14440-
\throws shall not throw exceptions if \tcode{f}'s target is
14440+
\throws Shall not throw exceptions if \tcode{f}'s target is
1444114441
a specialization of \tcode{reference_wrapper} or
1444214442
a function pointer. Otherwise, may throw \tcode{bad_alloc} or
1444314443
any exception thrown by the copy or move constructor
@@ -14480,7 +14480,7 @@
1448014480
reference to an object and a member function pointer. \end{note}
1448114481

1448214482
\pnum
14483-
\throws shall not throw exceptions when \tcode{f} is a function pointer
14483+
\throws Shall not throw exceptions when \tcode{f} is a function pointer
1448414484
or a \tcode{reference_wrapper<T>} for some \tcode{T}. Otherwise,
1448514485
may throw \tcode{bad_alloc} or any exception thrown by \tcode{F}'s copy
1448614486
or move constructor.
@@ -14595,7 +14595,7 @@
1459514595
\end{itemdecl}
1459614596

1459714597
\begin{itemdescr}
14598-
\pnum\effects interchanges the targets of \tcode{*this} and \tcode{other}.
14598+
\pnum\effects Interchanges the targets of \tcode{*this} and \tcode{other}.
1459914599
\end{itemdescr}
1460014600

1460114601
\rSec4[func.wrap.func.cap]{\tcode{function} capacity}

0 commit comments

Comments
 (0)