Skip to content

Commit 199d41f

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 199d41f

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
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/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.

0 commit comments

Comments
 (0)