From ca6b07c3482861675a63cd51c626d1ad6d2800b7 Mon Sep 17 00:00:00 2001 From: theotherphil Date: Wed, 5 Feb 2025 19:29:22 +0000 Subject: [PATCH] Fix a couple of doc typos (#17673) # Objective Fix two minor typos in bevy_picking docs. --- crates/bevy_picking/src/events.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/bevy_picking/src/events.rs b/crates/bevy_picking/src/events.rs index f5a4b8d67f..0660300147 100644 --- a/crates/bevy_picking/src/events.rs +++ b/crates/bevy_picking/src/events.rs @@ -72,7 +72,7 @@ pub struct Pointer { pub event: E, } -/// A traversal query (eg it implements [`Traversal`]) intended for use with [`Pointer`] events. +/// A traversal query (i.e. it implements [`Traversal`]) intended for use with [`Pointer`] events. /// /// This will always traverse to the parent, if the entity being visited has one. Otherwise, it /// propagates to the pointer's window and stops there. @@ -143,7 +143,7 @@ impl Pointer { } } -/// Fires when a pointer is canceled, and it's current interaction state is dropped. +/// Fires when a pointer is canceled, and its current interaction state is dropped. #[derive(Clone, PartialEq, Debug, Reflect)] pub struct Cancel { /// Information about the picking intersection.