Skip to content

Commit aad5e5c

Browse files
committed
📚 🐛 Fix typo in apply_sequence example
1 parent 2512bcf commit aad5e5c

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)