From b3fc7912c5a6549d40f4ae322aa87a2612e85063 Mon Sep 17 00:00:00 2001 From: Phil Ellison Date: Tue, 4 Feb 2025 07:28:04 +0000 Subject: [PATCH] Fix a couple of doc typos --- 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 f5a4b8d67f412..0660300147285 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.