Skip to content

Commit 1c88b6b

Browse files
authored
[range.slide.overview] Fix bad quotation marks for string-literal (#5326)
1 parent b2821c7 commit 1c88b6b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/ranges.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11923,7 +11923,7 @@
1192311923
vector v = {1, 2, 3, 4};
1192411924

1192511925
for (auto i : v | views::slide(2)) {
11926-
cout << '[' << i[0] << ', ' << i[1] << "] "; // prints: [1, 2] [2, 3] [3, 4]
11926+
cout << '[' << i[0] << ", " << i[1] << "] "; // prints: [1, 2] [2, 3] [3, 4]
1192711927
}
1192811928
\end{codeblock}
1192911929
\end{example}

0 commit comments

Comments
 (0)