From 125074452fc9245f3c40fdba72e7197f5384d3b0 Mon Sep 17 00:00:00 2001 From: Andreas Krug <153394595+Andreas-Krug@users.noreply.github.com> Date: Fri, 17 Jan 2025 09:54:15 +0100 Subject: [PATCH] [locale.money.get.virtuals,re.traits] Insert space around | for consistency --- source/text.tex | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/text.tex b/source/text.tex index 8865c862d9..d5eb83516b 100644 --- a/source/text.tex +++ b/source/text.tex @@ -4198,8 +4198,8 @@ obtained from the locale returned by \tcode{str.getloc()}, and \tcode{str.flags()}. If a valid sequence is recognized, does not change \tcode{err}; -otherwise, sets \tcode{err} to \tcode{(err|str.failbit)}, or -\tcode{(err|str.failbit|str.eof\-bit)} if no more characters are available, +otherwise, sets \tcode{err} to \tcode{(err | str.failbit)}, or +\tcode{(err | str.failbit | str.eof\-bit)} if no more characters are available, and does not change \tcode{units} or \tcode{digits}. Uses the pattern returned by \tcode{mp.neg_format()} to parse all values. The result is returned as an integral value stored in \tcode{units} @@ -10214,7 +10214,7 @@ regex_traits::char_class_type f; f = t.lookup_classname(d.begin(), d.end()); f |= t.lookup_classname(u.begin(), u.end()); -ctype_base::mask m = convert(f); // \tcode{m == ctype_base::digit|ctype_base::upper} +ctype_base::mask m = convert(f); // \tcode{m == ctype_base::digit | ctype_base::upper} \end{codeblock} \end{example} \begin{example}