From 8a592e458e45c2896c52a931ca04a69868efdd53 Mon Sep 17 00:00:00 2001 From: Bruce Mitchener Date: Fri, 21 Jun 2024 02:03:12 +0700 Subject: Fix typos. (#658) --- src/geometry/broad_phase_multi_sap/broad_phase_multi_sap.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/geometry') diff --git a/src/geometry/broad_phase_multi_sap/broad_phase_multi_sap.rs b/src/geometry/broad_phase_multi_sap/broad_phase_multi_sap.rs index d382258..87b2269 100644 --- a/src/geometry/broad_phase_multi_sap/broad_phase_multi_sap.rs +++ b/src/geometry/broad_phase_multi_sap/broad_phase_multi_sap.rs @@ -44,7 +44,7 @@ use parry::utils::hashmap::HashMap; /// For example a 20x20x20 object will be inserted in the layer with region /// of size 10x10x10, resulting in only 8 regions being intersect by the Aabb. /// (If it was inserted in the layer with regions of size 1x1x1, it would have intersected -/// 8000 regions, which is a problem performancewise.) +/// 8000 regions, which is a problem performance-wise.) /// /// We call this new method the Hierarchical-SAP. /// -- cgit