Skip to content

Commit fbb0691

Browse files
Dawn Perchikzygoloid
authored andcommitted
[concepts] Renamed concepts' section names to remove trailing prepositions for consistency.
* concept.convertibleto => concept.convertible * concept.derivedfrom => concept.derived * concept.stricttotallyordered => concept.totallyordered
1 parent 7beed51 commit fbb0691

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

source/concepts.tex

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -151,11 +151,11 @@
151151
template<class T, class U>
152152
concept same_as = @\seebelow@;
153153

154-
// \ref{concept.derivedfrom}, concept \libconcept{derived_from}
154+
// \ref{concept.derived}, concept \libconcept{derived_from}
155155
template<class Derived, class Base>
156156
concept derived_from = @\seebelow@;
157157

158-
// \ref{concept.convertibleto}, concept \libconcept{convertible_to}
158+
// \ref{concept.convertible}, concept \libconcept{convertible_to}
159159
template<class From, class To>
160160
concept convertible_to = @\seebelow@;
161161

@@ -223,7 +223,7 @@
223223
template<class T, class U>
224224
concept equality_comparable_with = @\seebelow@;
225225

226-
// \ref{concept.stricttotallyordered}, concept \libconcept{totally_ordered}
226+
// \ref{concept.totallyordered}, concept \libconcept{totally_ordered}
227227
template<class T>
228228
concept totally_ordered = @\seebelow@;
229229
template<class T, class U>
@@ -290,7 +290,7 @@
290290
\end{note}
291291
\end{itemdescr}
292292

293-
\rSec2[concept.derivedfrom]{Concept \libconcept{derived_from}}
293+
\rSec2[concept.derived]{Concept \libconcept{derived_from}}
294294

295295
\indexlibrary{\idxcode{derived_from}}%
296296
\begin{itemdecl}
@@ -309,7 +309,7 @@
309309
\end{note}
310310
\end{itemdescr}
311311

312-
\rSec2[concept.convertibleto]{Concept \libconcept{convertible_to}}
312+
\rSec2[concept.convertible]{Concept \libconcept{convertible_to}}
313313

314314
\pnum
315315
The \libconcept{convertible_to} concept requires an expression of a particular
@@ -951,7 +951,7 @@
951951
\tcode{bool(t == u) == bool(C(t) == C(u))}.
952952
\end{itemdescr}
953953

954-
\rSec2[concept.stricttotallyordered]{Concept \libconcept{totally_ordered}}
954+
\rSec2[concept.totallyordered]{Concept \libconcept{totally_ordered}}
955955

956956
\indexlibrary{\idxcode{totally_ordered}}%
957957
\begin{itemdecl}

source/iterators.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1359,7 +1359,7 @@
13591359
\pnum
13601360
All integer-class types model
13611361
\libconcept{regular}\iref{concepts.object} and
1362-
\libconcept{totally_ordered}\iref{concept.stricttotallyordered}.
1362+
\libconcept{totally_ordered}\iref{concept.totallyordered}.
13631363

13641364
\pnum
13651365
A value-initialized object of integer-class type has value 0.

source/lib-intro.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -533,7 +533,7 @@
533533
result in the required semantics failing to be met.
534534
\begin{example}
535535
The required \tcode{<} operator of the \libconcept{totally_ordered}
536-
concept\iref{concept.stricttotallyordered} does not meet the
536+
concept\iref{concept.totallyordered} does not meet the
537537
semantic requirements of that concept when operating on NaNs.
538538
\end{example}
539539
This does not affect whether a type models the concept.

source/support.tex

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4797,7 +4797,7 @@
47974797
\end{itemize}
47984798
\item
47994799
If \tcode{Cat} is convertible to \tcode{strong_ordering}, \tcode{T} models
4800-
\libconcept{totally_ordered}\iref{concept.stricttotallyordered}.
4800+
\libconcept{totally_ordered}\iref{concept.totallyordered}.
48014801
\end{itemize}
48024802

48034803
\indexlibrary{\idxcode{three_way_comparable_with}}%
@@ -4855,7 +4855,7 @@
48554855
\item
48564856
if \tcode{Cat} is convertible to \tcode{strong_ordering},
48574857
\tcode{T} and \tcode{U} model
4858-
\tcode{\libconcept{totally_ordered_with}<T, U>}\iref{concept.stricttotallyordered}.
4858+
\tcode{\libconcept{totally_ordered_with}<T, U>}\iref{concept.totallyordered}.
48594859
\end{itemize}
48604860

48614861
\rSec2[cmp.result]{Result of three-way comparison}

0 commit comments

Comments
 (0)