Skip to content

Commit b86e791

Browse files
committed
Fix collisions with the right margin.
1 parent 19d21c3 commit b86e791

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

source/locales.tex

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4826,11 +4826,13 @@
48264826
\pnum
48274827
\returns
48284828
The specializations required in \tref{locale.spec}\iref{locale.category}, namely
4829-
\tcode{moneypunct<char>},
4830-
\tcode{moneypunct<\brk{}wchar_t>},
4831-
\tcode{moneypunct<char, true>},
4829+
\begin{itemize}
4830+
\item \tcode{moneypunct<char>},
4831+
\item \tcode{moneypunct<wchar_t>},
4832+
\item \tcode{moneypunct<char, true>},
48324833
and
4833-
\tcode{moneypunct<wchar_t, true>},
4834+
\item \tcode{moneypunct<wchar_t, true>},
4835+
\end{itemize}
48344836
return an object of type
48354837
\tcode{pattern}
48364838
initialized to

source/utilities.tex

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19987,7 +19987,8 @@
1998719987
string s0 = format("{}", 42); // value of \tcode{s0} is \tcode{"42"}
1998819988
string s1 = format("{0:b} {0:d} {0:o} {0:x}", 42); // value of \tcode{s1} is \tcode{"101010 42 52 2a"}
1998919989
string s2 = format("{0:#x} {0:#X}", 42); // value of \tcode{s2} is \tcode{"0x2a 0X2A"}
19990-
string s3 = format("{:n}", 1234); // value of \tcode{s3} might be \tcode{"1,234"} (depending on the locale)
19990+
string s3 = format("{:n}", 1234); // value of \tcode{s3} might be \tcode{"1,234"}
19991+
// (depending on the locale)
1999119992
\end{codeblock}
1999219993
\end{example}
1999319994
%

0 commit comments

Comments
 (0)