Skip to content

Commit 4efa2e0

Browse files
authored
[istream.extractors,stringbuf.members] Add spaces around operator - (#7816)
1 parent 9fd6664 commit 4efa2e0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Diff for: source/iostreams.tex

+3-3
Original file line numberDiff line numberDiff line change
@@ -4948,7 +4948,7 @@
49484948
\pnum
49494949
Characters are extracted and stored until any of the following occurs:
49504950
\begin{itemize}
4951-
\item \tcode{n-1} characters are stored;
4951+
\item \tcode{n - 1} characters are stored;
49524952
\item end of file occurs on the input sequence;
49534953
\item letting \tcode{ct} be \tcode{use_facet<ctype<charT>>(in.getloc())},
49544954
\tcode{ct.is(ct.space, c)} is \tcode{true}.
@@ -8530,9 +8530,9 @@
85308530
the \tcode{basic_stringbuf}'s underlying character sequence in \tcode{buf}:
85318531
\begin{itemize}
85328532
\item If \tcode{ios_base::out} is set in \exposid{mode},
8533-
then \tcode{sv(pbase(), high_mark-pbase())} is returned.
8533+
then \tcode{sv(pbase(), high_mark - pbase())} is returned.
85348534
\item Otherwise, if \tcode{ios_base::in} is set in \exposid{mode},
8535-
then \tcode{sv(eback(), egptr()-eback())} is returned.
8535+
then \tcode{sv(eback(), egptr() - eback())} is returned.
85368536
\item Otherwise, \tcode{sv()} is returned.
85378537
\end{itemize}
85388538

0 commit comments

Comments
 (0)