aboutsummaryrefslogtreecommitdiff
path: root/src/geometry
diff options
context:
space:
mode:
authorTimo Kösters <timo@koesters.xyz>2022-08-04 11:42:02 +0200
committerGitHub <noreply@github.com>2022-08-04 11:42:02 +0200
commitf55925685d6030fc3c281cc50faa7108670f26bc (patch)
tree3003b025477e0998bf1d1d199ae6690af92c08dc /src/geometry
parent90c97341b1e9c032375ece0aa6a00348702b7e8b (diff)
downloadrapier-f55925685d6030fc3c281cc50faa7108670f26bc.tar.gz
rapier-f55925685d6030fc3c281cc50faa7108670f26bc.tar.bz2
rapier-f55925685d6030fc3c281cc50faa7108670f26bc.zip
docs: fix typo
Diffstat (limited to 'src/geometry')
-rw-r--r--src/geometry/broad_phase_multi_sap/broad_phase.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/geometry/broad_phase_multi_sap/broad_phase.rs b/src/geometry/broad_phase_multi_sap/broad_phase.rs
index 8f47396..5858b94 100644
--- a/src/geometry/broad_phase_multi_sap/broad_phase.rs
+++ b/src/geometry/broad_phase_multi_sap/broad_phase.rs
@@ -27,7 +27,7 @@ use parry::utils::hashmap::HashMap;
/// collecting endpoints and swapping them when they move to detect interaction pairs).
/// Each AABB is inserted in all the regions it intersects.
/// This prevents the far-away problem because two objects that are far away will
-/// be located on different regions. So their endpoints will never meed.
+/// be located on different regions. So their endpoints will never meet.
///
/// However, the Multi-SAP approach has one notable problem: the region size must
/// be chosen wisely. It could be user-defined, but that's makes it more difficult