Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[locale.money.get.virtuals,re.traits] Insert space around | for consistency #7568

Merged
merged 1 commit into from
Jan 17, 2025
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/text.tex
Original file line number Diff line number Diff line change
Expand Up @@ -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}
Expand Down Expand Up @@ -10214,7 +10214,7 @@
regex_traits<char>::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<char>(f); // \tcode{m == ctype_base::digit|ctype_base::upper}
ctype_base::mask m = convert<char>(f); // \tcode{m == ctype_base::digit | ctype_base::upper}
\end{codeblock}
\end{example}
\begin{example}
Expand Down