Skip to content

Commit 73ec55d

Browse files
committed
Replace \textit with \term where appropriate.
1 parent c5b8c2a commit 73ec55d

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

source/containers.tex

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2059,7 +2059,7 @@
20592059
argument values of type \tcode{Key}, and by a binary predicate \tcode{Pred}
20602060
that induces an equivalence relation on values of type \tcode{Key}.
20612061
Additionally, \tcode{unordered_map} and \tcode{unordered_multimap} associate
2062-
an arbitrary \textit{mapped type} \tcode{T} with the \tcode{Key}.
2062+
an arbitrary \term{mapped type} \tcode{T} with the \tcode{Key}.
20632063

20642064
\pnum
20652065
\indextext{unordered associative containers!hash function}%
@@ -2089,9 +2089,9 @@
20892089
\pnum
20902090
\indextext{unordered associative containers!unique keys}%
20912091
\indextext{unordered associative containers!equivalent keys}%
2092-
An unordered associative container supports \textit{unique keys} if it
2092+
An unordered associative container supports \term{unique keys} if it
20932093
may contain at most one element for each key. Otherwise, it supports
2094-
\textit{equivalent keys}. \tcode{unordered_set} and \tcode{unordered_map}
2094+
\term{equivalent keys}. \tcode{unordered_set} and \tcode{unordered_map}
20952095
support unique keys. \tcode{unordered_multiset} and \tcode{unordered_multimap}
20962096
support equivalent keys. In containers that support equivalent keys,
20972097
elements with equivalent keys are adjacent to each other
@@ -2123,7 +2123,7 @@
21232123
\indextext{buckets}%
21242124
\indextext{hash code}%
21252125
The elements of an unordered associative container are organized into
2126-
\textit{buckets}. Keys with the same hash code appear in the same
2126+
\term{buckets}. Keys with the same hash code appear in the same
21272127
bucket. The number of buckets is automatically increased as elements
21282128
are added to an unordered associative container, so that the average
21292129
number of elements per bucket is kept below a bound. Rehashing

source/iostreams.tex

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

13731373
\pnum
13741374
When a standard iostream object \tcode{str} is
1375-
\textit{synchronized}
1375+
\term{synchronized}
13761376
with a standard stdio stream \tcode{f}, the effect of inserting a character \tcode{c} by
13771377
\begin{codeblock}
13781378
fputc(f, c);
@@ -1895,7 +1895,7 @@
18951895
\pnum
18961896
\returns
18971897
An output sequence that is
1898-
\textit{tied}
1898+
\term{tied}
18991899
to (synchronized with) the sequence controlled by the stream buffer.
19001900
\end{itemdescr}
19011901

source/regex.tex

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3605,7 +3605,7 @@
36053605
\pnum
36063606
\indextext{\idxcode{regex_iterator}!end-of-sequence}%
36073607
An object of type \tcode{regex_iterator} that is not an end-of-sequence iterator
3608-
holds a \textit{zero-length match} if \tcode{match[0].matched == true} and
3608+
holds a \term{zero-length match} if \tcode{match[0].matched == true} and
36093609
\tcode{match[0].first == match[0].second}. \begin{note} For
36103610
example, this can occur when the part of the regular expression that
36113611
matched consists only of an assertion (such as \verb|'^'|, \verb|'$'|,
@@ -3900,7 +3900,7 @@
39003900
\end{codeblock}
39013901

39023902
\pnum
3903-
A \textit{suffix iterator} is a \tcode{regex_token_iterator} object
3903+
A \term{suffix iterator} is a \tcode{regex_token_iterator} object
39043904
that points to a final sequence of characters at
39053905
the end of the target sequence. In a suffix iterator the
39063906
member \tcode{result} holds a pointer to the data
@@ -3916,7 +3916,7 @@
39163916
sequence \end{note}
39173917

39183918
\pnum
3919-
The \textit{current match} is \tcode{(*position).prefix()} if \tcode{subs[N] == -1}, or
3919+
The \term{current match} is \tcode{(*position).prefix()} if \tcode{subs[N] == -1}, or
39203920
\tcode{(*position)[subs[N]]} for any other value of \tcode{subs[N]}.
39213921

39223922
\rSec3[re.tokiter.cnstr]{\tcode{regex_token_iterator} constructors}

0 commit comments

Comments
 (0)