From 91578a93ef8826fba589bbd154399cf67dd7d5ba Mon Sep 17 00:00:00 2001 From: ripytide Date: Wed, 27 Dec 2023 15:17:27 +0000 Subject: [PATCH] cargo fmt --- src/utils.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils.rs b/src/utils.rs index dec4e32..7ccbdb9 100644 --- a/src/utils.rs +++ b/src/utils.rs @@ -19,7 +19,7 @@ along with discrete_range_map. If not, see . use core::cmp::Ordering; -use crate::{InclusiveInterval, PointType, RangeType, InclusiveRange}; +use crate::{InclusiveInterval, InclusiveRange, PointType, RangeType}; pub(crate) fn cmp_point_with_range(point: I, range: K) -> Ordering where