From a0c0848deeaae02c156ad06436d94672d60aa95e Mon Sep 17 00:00:00 2001 From: Joseph Rafael Ferrer Date: Sat, 11 Feb 2023 14:52:15 +0800 Subject: Fix typo in `EventHandler::handle_collision_event` --- src/pipeline/event_handler.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pipeline/event_handler.rs b/src/pipeline/event_handler.rs index e5270ad..d0214bd 100644 --- a/src/pipeline/event_handler.rs +++ b/src/pipeline/event_handler.rs @@ -36,7 +36,7 @@ pub trait EventHandler: Send + Sync { /// * `event` - The collision event. /// * `bodies` - The set of rigid-bodies. /// * `colliders` - The set of colliders. - /// * `contact_pair` - The current state of contacts between the two colliders. This is set ot `None` + /// * `contact_pair` - The current state of contacts between the two colliders. This is set or `None` /// if at least one of the collider is a sensor (in which case no contact information /// is ever computed). fn handle_collision_event( -- cgit