Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions source/iostreams.tex
Original file line number Diff line number Diff line change
Expand Up @@ -4948,7 +4948,7 @@
\pnum
Characters are extracted and stored until any of the following occurs:
\begin{itemize}
\item \tcode{n-1} characters are stored;
\item \tcode{n - 1} characters are stored;
\item end of file occurs on the input sequence;
\item letting \tcode{ct} be \tcode{use_facet<ctype<charT>>(in.getloc())},
\tcode{ct.is(ct.space, c)} is \tcode{true}.
Expand Down Expand Up @@ -8530,9 +8530,9 @@
the \tcode{basic_stringbuf}'s underlying character sequence in \tcode{buf}:
\begin{itemize}
\item If \tcode{ios_base::out} is set in \exposid{mode},
then \tcode{sv(pbase(), high_mark-pbase())} is returned.
then \tcode{sv(pbase(), high_mark - pbase())} is returned.
\item Otherwise, if \tcode{ios_base::in} is set in \exposid{mode},
then \tcode{sv(eback(), egptr()-eback())} is returned.
then \tcode{sv(eback(), egptr() - eback())} is returned.
\item Otherwise, \tcode{sv()} is returned.
\end{itemize}

Expand Down