From 7375a691e232bb59033980dc09c7179bc16e377f Mon Sep 17 00:00:00 2001 From: Bruce Mitchener Date: Sun, 5 May 2024 16:41:38 +0630 Subject: Fix some typos. (#620) --- src/geometry/broad_phase.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/geometry/broad_phase.rs') diff --git a/src/geometry/broad_phase.rs b/src/geometry/broad_phase.rs index ea7c774..836ebc8 100644 --- a/src/geometry/broad_phase.rs +++ b/src/geometry/broad_phase.rs @@ -8,7 +8,7 @@ pub type BroadPhaseProxyIndex = u32; /// Trait implemented by broad-phase algorithms supported by Rapier. /// /// The task of a broad-phase algorithm is to detect potential collision pairs, usually based on -/// bounding volumes. The pairs must be concervative: it is OK to create a collision pair if +/// bounding volumes. The pairs must be conservative: it is OK to create a collision pair if /// two objects don’t actually touch, but it is incorrect to remove a pair between two objects /// that are still touching. In other words, it can have false-positive (though these induce /// some computational overhead on the narrow-phase), but cannot have false-negative. -- cgit