From 6960fda6658bd153f328a0c0b60f0008c454f666 Mon Sep 17 00:00:00 2001 From: Andreas Krug <153394595+Andreas-Krug@users.noreply.github.com> Date: Fri, 4 Apr 2025 08:20:09 +0200 Subject: [PATCH] [istream.extractors,stringbuf.members] Add spaces around operator - --- source/iostreams.tex | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/iostreams.tex b/source/iostreams.tex index 67764460d4..535596515e 100644 --- a/source/iostreams.tex +++ b/source/iostreams.tex @@ -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>(in.getloc())}, \tcode{ct.is(ct.space, c)} is \tcode{true}. @@ -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}