Skip to content

Commit e18377d

Browse files
authored
[locale.money.get.virtuals,re.traits] Insert spaces around | for consistency (#7568)
1 parent fdeb1c7 commit e18377d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

source/text.tex

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4198,8 +4198,8 @@
41984198
obtained from the locale returned by \tcode{str.getloc()}, and
41994199
\tcode{str.flags()}.
42004200
If a valid sequence is recognized, does not change \tcode{err};
4201-
otherwise, sets \tcode{err} to \tcode{(err|str.failbit)}, or
4202-
\tcode{(err|str.failbit|str.eof\-bit)} if no more characters are available,
4201+
otherwise, sets \tcode{err} to \tcode{(err | str.failbit)}, or
4202+
\tcode{(err | str.failbit | str.eof\-bit)} if no more characters are available,
42034203
and does not change \tcode{units} or \tcode{digits}.
42044204
Uses the pattern returned by \tcode{mp.neg_format()} to parse all values.
42054205
The result is returned as an integral value stored in \tcode{units}
@@ -10214,7 +10214,7 @@
1021410214
regex_traits<char>::char_class_type f;
1021510215
f = t.lookup_classname(d.begin(), d.end());
1021610216
f |= t.lookup_classname(u.begin(), u.end());
10217-
ctype_base::mask m = convert<char>(f); // \tcode{m == ctype_base::digit|ctype_base::upper}
10217+
ctype_base::mask m = convert<char>(f); // \tcode{m == ctype_base::digit | ctype_base::upper}
1021810218
\end{codeblock}
1021910219
\end{example}
1022010220
\begin{example}

0 commit comments

Comments
 (0)