Skip to content

Commit e23a5df

Browse files
committed
[iostream.format] Minor rewording to be more accurate and fit the lines better
1 parent 0a4ca97 commit e23a5df

File tree

1 file changed

+11
-20
lines changed

1 file changed

+11
-20
lines changed

source/iostreams.tex

Lines changed: 11 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -4308,8 +4308,7 @@
43084308
\pnum
43094309
\effects
43104310
Constructs an object of class
4311-
\tcode{basic_istream},
4312-
assigning initial values to the base class by calling
4311+
\tcode{basic_istream}, initializing the base class subobject with
43134312
\tcode{basic_ios::init(sb)}~(\ref{basic.ios.cons}).
43144313

43154314
\pnum
@@ -4462,7 +4461,9 @@
44624461
\pnum
44634462
\remarks
44644463
The constructor
4465-
\tcode{explicit sentry(basic_istream<charT, traits>\& is, bool noskipws = false)}
4464+
\begin{codeblock}
4465+
explicit sentry(basic_istream<charT, traits>& is, bool noskipws = false)
4466+
\end{codeblock}
44664467
uses the currently imbued locale in \tcode{is},
44674468
to determine whether the next input character is
44684469
whitespace or not.
@@ -4759,18 +4760,10 @@
47594760
\pnum
47604761
Characters are extracted and stored until any of the following occurs:
47614762
\begin{itemize}
4762-
\item
4763-
\tcode{n-1}
4764-
characters are stored;
4765-
\item
4766-
end of file occurs on the input sequence;
4767-
\item
4768-
\tcode{ct.is(ct.space, c)}
4769-
is
4770-
\tcode{true}
4771-
for the next available input character \tcode{c},
4772-
where \tcode{ct} is
4773-
\tcode{use_facet<ctype<\brk{}charT>>(in.getloc())}.
4763+
\item \tcode{n-1} characters are stored;
4764+
\item end of file occurs on the input sequence;
4765+
\item letting \tcode{ct} be \tcode{use_facet<ctype<charT>>(in.getloc())},
4766+
\tcode{ct.is(ct.space, c)} is \tcode{true}.
47744767
\end{itemize}
47754768

47764769
\pnum
@@ -5651,9 +5644,8 @@
56515644
\begin{itemdescr}
56525645
\pnum
56535646
\effects
5654-
Constructs an object of class
5655-
\tcode{basic_iostream},
5656-
assigning initial values to the base classes by calling
5647+
Constructs an object of class \tcode{basic_iostream},
5648+
initializing the base class subobjects with
56575649
\tcode{basic_istream<charT, traits>(sb)}~(\ref{istream})
56585650
and
56595651
\tcode{basic_ostream<charT, traits>(sb)}~(\ref{ostream}).
@@ -5892,8 +5884,7 @@
58925884
\pnum
58935885
\effects
58945886
Constructs an object of class
5895-
\tcode{basic_ostream},
5896-
assigning initial values to the base class by calling
5887+
\tcode{basic_ostream}, initializing the base class subobject with
58975888
\tcode{basic_ios<charT, traits>::init(sb)}~(\ref{basic.ios.cons}).
58985889

58995890
\pnum

0 commit comments

Comments
 (0)