Skip to content

Commit

Permalink
Merge pull request #166 from fffelix-huang/master
Browse files Browse the repository at this point in the history
Fixed typo in lazysegtree.hpp
  • Loading branch information
yosupo06 authored Jun 19, 2024
2 parents bc63fe9 + 61fbfd6 commit 78d9c24
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion atcoder/lazysegtree.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ struct lazy_segtree {
"e must work as S()");
static_assert(
std::is_convertible_v<decltype(mapping), std::function<S(F, S)>>,
"mapping must work as F(F, S)");
"mapping must work as S(F, S)");
static_assert(
std::is_convertible_v<decltype(composition), std::function<F(F, F)>>,
"composition must work as F(F, F)");
Expand Down

0 comments on commit 78d9c24

Please sign in to comment.