Skip to content

Commit

Permalink
Merge pull request #145 from KeiichiHirobe/fix-lazysegmenttree-doc
Browse files Browse the repository at this point in the history
fix lazysegment tree doc
  • Loading branch information
yosupo06 authored Mar 6, 2023
2 parents 885dbef a6a3a6a commit 485f524
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion document_en/lazysegtree.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 17,7 @@ For simplicity, in this document, we assume that the oracles `op`, `e`, `mapping

```cpp
(1) lazy_segtree<S, op, e, F, mapping, composition, id> seg(int n);
(2) lazy_segtree<S, op, e, F, mapping, composition, id> seg(vector<T> v);
(2) lazy_segtree<S, op, e, F, mapping, composition, id> seg(vector<S> v);
```
The following should be defined.
Expand Down
2 changes: 1 addition & 1 deletion document_ja/lazysegtree.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 19,7 @@

```cpp
(1) lazy_segtree<S, op, e, F, mapping, composition, id> seg(int n);
(2) lazy_segtree<S, op, e, F, mapping, composition, id> seg(vector<T> v);
(2) lazy_segtree<S, op, e, F, mapping, composition, id> seg(vector<S> v);
```
- モノイドの型 `S`
Expand Down

0 comments on commit 485f524

Please sign in to comment.