From a2f140c6d49c349a973dad2068c4c6bcf669083d Mon Sep 17 00:00:00 2001 From: nu50218 <40682920+nu50218@users.noreply.github.com> Date: Wed, 27 Dec 2023 21:31:06 +0900 Subject: [PATCH] fix typo in lazysegtree.hpp --- atcoder/lazysegtree.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/atcoder/lazysegtree.hpp b/atcoder/lazysegtree.hpp index c858663..eef0f8d 100644 --- a/atcoder/lazysegtree.hpp +++ b/atcoder/lazysegtree.hpp @@ -29,7 +29,7 @@ struct lazy_segtree { "mapping must work as F(F, S)"); static_assert( std::is_convertible_v>, - "compostiion must work as F(F, F)"); + "composition must work as F(F, F)"); static_assert(std::is_convertible_v>, "id must work as F()");