Skip to content

Commit 577968d

Browse files
committed
[temp.over.link] Change leading letter in comments in example to lowercase.
Fixes NB JP 6 (C++17 DIS)
1 parent 0818941 commit 577968d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

source/templates.tex

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3614,15 +3614,15 @@
36143614
equivalent and would cause a program to be ill-formed:
36153615

36163616
\begin{codeblock}
3617-
// Guaranteed to be the same
3617+
// guaranteed to be the same
36183618
template <int I> void f(A<I>, A<I+10>);
36193619
template <int I> void f(A<I>, A<I+10>);
36203620

3621-
// Guaranteed to be different
3621+
// guaranteed to be different
36223622
template <int I> void f(A<I>, A<I+10>);
36233623
template <int I> void f(A<I>, A<I+11>);
36243624

3625-
// Ill-formed, no diagnostic required
3625+
// ill-formed, no diagnostic required
36263626
template <int I> void f(A<I>, A<I+10>);
36273627
template <int I> void f(A<I>, A<I+1+2+3+4>);
36283628
\end{codeblock}

0 commit comments

Comments
 (0)