diff options
| author | Joseph Rafael Ferrer <rafael2x0@gmail.com> | 2023-02-11 14:52:15 +0800 |
|---|---|---|
| committer | Joseph Rafael Ferrer <rafael2x0@gmail.com> | 2023-02-11 14:52:15 +0800 |
| commit | a0c0848deeaae02c156ad06436d94672d60aa95e (patch) | |
| tree | a58f08382c7976f5ee808d7d3914089f4103261a | |
| parent | 2e929bbcabe49b7b18d4ee8d1fe4e58dc066c5ac (diff) | |
| download | rapier-a0c0848deeaae02c156ad06436d94672d60aa95e.tar.gz rapier-a0c0848deeaae02c156ad06436d94672d60aa95e.tar.bz2 rapier-a0c0848deeaae02c156ad06436d94672d60aa95e.zip | |
Fix typo in `EventHandler::handle_collision_event`
| -rw-r--r-- | src/pipeline/event_handler.rs | 2 |
1 files changed, 1 insertions, 1 deletions
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( |
