From e09d526785bbcd7046dd6e1b359998f7641821e9 Mon Sep 17 00:00:00 2001 From: Klaus Sinani Date: Tue, 28 Aug 2018 06:37:19 +0300 Subject: [PATCH] Fix minor typo on `segment-tree` readme (#183) --- src/data-structures/tree/segment-tree/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/data-structures/tree/segment-tree/README.md b/src/data-structures/tree/segment-tree/README.md index 0049daf1..5655ab34 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