From 9b3598cd57aedabd7652ba57946306825136fb6f Mon Sep 17 00:00:00 2001 From: Maxim Smolskiy Date: Wed, 28 Jun 2023 21:47:00 +0300 Subject: [PATCH] Fix function description in README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1e191c8..6508c28 100644 --- a/README.md +++ b/README.md @@ -200,7 +200,7 @@ Finds the first interval in the interval tree that overlaps the given interval. --- ### (const)iterator overlap_find_all(interval_type const& ival, OnFindFunctionT const& on_find, bool exclusive) -Finds the first interval in the interval tree that overlaps the given interval. +Finds all intervals in the interval tree that overlaps the given interval. #### Parameters * `ival` The interval to find an overlap for. * `on_find` A function of type bool(iterator) that is called when an interval was found.