From 6ed1d5a9b0723049a15dc7896e34e5cd650f62c7 Mon Sep 17 00:00:00 2001 From: HampusM Date: Wed, 15 Oct 2025 15:27:40 +0200 Subject: refactor(ecs): shorten insert_at_partition_point_by_key fn name --- ecs/src/event.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ecs/src/event.rs') diff --git a/ecs/src/event.rs b/ecs/src/event.rs index fc3a58b..dffd327 100644 --- a/ecs/src/event.rs +++ b/ecs/src/event.rs @@ -68,7 +68,7 @@ impl NewEvents return; } - self.events.insert_at_partition_point_by_key( + self.events.insert_at_part_pt_by_key( (event_id, Matches { match_ids: Vec::from([match_id]) }), |(other_event_id, _)| *other_event_id, ); @@ -100,6 +100,6 @@ impl Matches } self.match_ids - .insert_at_partition_point_by_key(match_id, |other_match_id| *other_match_id); + .insert_at_part_pt_by_key(match_id, |other_match_id| *other_match_id); } } -- cgit v1.2.3-18-g5258