Skip to content

Commit 485f524

Browse files
authored
Merge pull request #145 from KeiichiHirobe/fix-lazysegmenttree-doc
fix lazysegment tree doc
2 parents 885dbef + a6a3a6a commit 485f524

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

document_en/lazysegtree.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ For simplicity, in this document, we assume that the oracles `op`, `e`, `mapping
1717

1818
```cpp
1919
(1) lazy_segtree<S, op, e, F, mapping, composition, id> seg(int n);
20-
(2) lazy_segtree<S, op, e, F, mapping, composition, id> seg(vector<T> v);
20+
(2) lazy_segtree<S, op, e, F, mapping, composition, id> seg(vector<S> v);
2121
```
2222
2323
The following should be defined.

document_ja/lazysegtree.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
```cpp
2121
(1) lazy_segtree<S, op, e, F, mapping, composition, id> seg(int n);
22-
(2) lazy_segtree<S, op, e, F, mapping, composition, id> seg(vector<T> v);
22+
(2) lazy_segtree<S, op, e, F, mapping, composition, id> seg(vector<S> v);
2323
```
2424
2525
- モノイドの型 `S`

0 commit comments

Comments
 (0)