Skip to content

Commit 30f3395

Browse files
committed
FIXUP: Use \range, fix reference, fix citing, add reference in synopsis
1 parent 3bb420d commit 30f3395

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

source/back.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ \chapter{Bibliography}
3131
Available from: \url{https://www.unicode.org/reports/tr31/tr31-33.html}
3232
\item
3333
The Unicode Standard Version 14.0,
34-
\doccite{Core Specification}, Chapter 3.9.
34+
\doccite{Core Specification}.
3535
Unicode Consortium, ISBN 978-1-936213-29-0, copyright \copyright 2021 Unicode, Inc.
3636
Available from: \url{https://www.unicode.org/versions/Unicode14.0.0/UnicodeStandard-14.0.pdf}
3737
\item

source/iostreams.tex

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4216,6 +4216,7 @@
42164216
\indexheader{print}%
42174217
\begin{codeblock}
42184218
namespace std {
4219+
// \ref{print.fun}, print functions
42194220
template<class... Args>
42204221
void print(@\exposid{format-string}@<Args...> fmt, Args&&... args);
42214222
template<class... Args>
@@ -7519,7 +7520,7 @@
75197520
\begin{itemdescr}
75207521
\pnum
75217522
\effects
7522-
If the ordinary literal encoding ([lex.charset]) is UTF-8, equivalent to:
7523+
If the ordinary literal encoding\iref{lex.charset} is UTF-8, equivalent to:
75237524
\begin{codeblock}
75247525
vprint_unicode(stream, fmt.@\exposid{str}@, make_format_args(std::forward<Args>(args)...));
75257526
\end{codeblock}
@@ -7728,7 +7729,7 @@
77287729
Otherwise (if \tcode{os} is not such a stream or
77297730
the function is \tcode{vprint_nonunicode}),
77307731
inserts the character sequence
7731-
\tcode{[out.begin(), out.end())} into \tcode{os}.
7732+
\range{out.begin()}{out.end()} into \tcode{os}.
77327733
If writing to the terminal or inserting into \tcode{os} fails,
77337734
calls \tcode{os.setstate(ios_base::badbit)}
77347735
(which may throw \tcode{ios_base::failure}).

0 commit comments

Comments
 (0)