diff --git a/src/data-structures/tree/segment-tree/README.md b/src/data-structures/tree/segment-tree/README.md index 0049daf19..5655ab346 100644 --- a/src/data-structures/tree/segment-tree/README.md +++ b/src/data-structures/tree/segment-tree/README.md @@ -40,7 +40,7 @@ and geographic information systems. Current implementation of Segment Tree implies that you may pass any binary (with two input params) function to it and thus you're able to do range query for variety of functions. -In tests you may fins examples of doing `min`, `max` and `sam` range +In tests you may find examples of doing `min`, `max` and `sam` range queries on SegmentTree. ## References