Skip to content

Commit e9434db

Browse files
jwakelytkoeppe
authored andcommitted
[tuple.creation] Add missing semi-colon to example
1 parent f400d80 commit e9434db

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/utilities.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2517,7 +2517,7 @@
25172517
\begin{example}
25182518
\begin{codeblock}
25192519
int i; float j;
2520-
make_tuple(1, ref(i), cref(j))
2520+
make_tuple(1, ref(i), cref(j));
25212521
\end{codeblock}
25222522
creates a tuple of type \tcode{tuple<int, int\&, const float\&>}.
25232523
\end{example}

0 commit comments

Comments
 (0)