Skip to content

Commit 785592f

Browse files
jensmaurertkoeppe
authored andcommitted
[ostream.iterator], [istream.iterator] Format exposition-only members with \tcode, not italics. (#1267)
Fixes #550.
1 parent a3afbc8 commit 785592f

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

source/iterators.tex

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2669,8 +2669,8 @@
26692669
\begin{itemdescr}
26702670
\pnum
26712671
\effects
2672-
Initializes \textit{in_stream} with \tcode{addressof(s)}.
2673-
\textit{value} may be initialized during
2672+
Initializes \tcode{in_stream} with \tcode{addressof(s)}.
2673+
\tcode{value} may be initialized during
26742674
construction or the first time it is referenced.
26752675

26762676
\pnum
@@ -2717,7 +2717,7 @@
27172717
\begin{itemdescr}
27182718
\pnum
27192719
\returns
2720-
\textit{value}.
2720+
\tcode{value}.
27212721
\end{itemdescr}
27222722

27232723
\indexlibrarymember{operator->}{istream_iterator}%
@@ -2742,7 +2742,7 @@
27422742

27432743
\pnum
27442744
\effects
2745-
As if by: \tcode{*in_stream \shr value;}
2745+
As if by: \tcode{*in_stream \shr{} value;}
27462746

27472747
\pnum
27482748
\returns
@@ -2862,8 +2862,8 @@
28622862
\begin{itemdescr}
28632863
\pnum
28642864
\effects
2865-
Initializes \textit{out_stream} with \tcode{addressof(s)} and
2866-
\textit{delim} with null.
2865+
Initializes \tcode{out_stream} with \tcode{addressof(s)} and
2866+
\tcode{delim} with null.
28672867
\end{itemdescr}
28682868

28692869

@@ -2875,8 +2875,8 @@
28752875
\begin{itemdescr}
28762876
\pnum
28772877
\effects
2878-
Initializes \textit{out_stream} with \tcode{addressof(s)} and
2879-
\textit{delim} with \tcode{delimiter}.
2878+
Initializes \tcode{out_stream} with \tcode{addressof(s)} and
2879+
\tcode{delim} with \tcode{delimiter}.
28802880
\end{itemdescr}
28812881

28822882

@@ -2914,9 +2914,9 @@
29142914
\effects
29152915
As if by:
29162916
\begin{codeblock}
2917-
*@\textit{out_stream}@ << value;
2918-
if (@\textit{delim}@ != 0)
2919-
*@\textit{out_stream}@ << @\textit{delim}@;
2917+
*out_stream << value;
2918+
if (delim != 0)
2919+
*out_stream << delim;
29202920
return *this;
29212921
\end{codeblock}
29222922
\end{itemdescr}

0 commit comments

Comments
 (0)