Skip to content

Commit 029754a

Browse files
authored
Merge pull request intel#177 from elbeno/fix-doc-typo
📚 🐛 Fix typo in `apply_sequence` example
2 parents 2512bcf + aad5e5c commit 029754a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/type_traits.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ int x = stdx::apply_sequence<L1>([&] <typename... Ts> () { return (0 + ... + Ts:
5151
// x is 3
5252
5353
using L2 = stdx::value_list<1, 2>;
54-
int y = stdx::apply_sequence<L1>([&] <auto... Vs> () { return (0 + ... + Vs); });
54+
int y = stdx::apply_sequence<L2>([&] <auto... Vs> () { return (0 + ... + Vs); });
5555
// y is 3
5656
----
5757

0 commit comments

Comments
 (0)