Skip to content

Commit 00300d6

Browse files
authored
Update zip_transform_view.md
1 parent 5695a7a commit 00300d6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

reference/ranges/zip_transform_view.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ int main() {
8484
std::vector d = {1, 2, 3};
8585
std::vector p = {1, 10, 100, 1000};
8686
87-
std::println("{}", std::views::zip_transform([](auto x, auto y){ return x * y }, d, p));
87+
std::println("{}", std::views::zip_transform([](auto x, auto y){ return x * y; }, d, p));
8888
}
8989
```
9090
* std::views::zip_transform[color ff0000]

0 commit comments

Comments
 (0)