Skip to content

Commit 9370a52

Browse files
committed
fix docs so that they compile now
1 parent 03c8aaf commit 9370a52

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

library/data_structures_[l,r)/seg_tree.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66
//! return vl + vr;
77
//! });
88
//! tree st(n, INT_MAX, ranges::min);
9-
//! int idx = st.max_right(l, r, [&](int m, int value) {
9+
//! st.max_right(l, r, [&](int m, int value) {
1010
//! // value = op(a[l], a[l+1], ..., a[m-1])
1111
//! return value <= x;
1212
//! });
13-
//! idx = st.min_left(l, r, [&](int m, int value) {
13+
//! st.min_left(l, r, [&](int m, int value) {
1414
//! // value = op(a[m], ..., a[r-2], a[r-1])
1515
//! return value <= x;
1616
//! });

0 commit comments

Comments
 (0)