From 1cd5ad0c20e6e2448363a159047815f26725170d Mon Sep 17 00:00:00 2001 From: ickshonpe Date: Wed, 9 Jul 2025 17:52:02 +0100 Subject: [PATCH] Fixed backticks --- crates/bevy_ui/src/focus.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/bevy_ui/src/focus.rs b/crates/bevy_ui/src/focus.rs index f5ccdf2e72..7efdbb141a 100644 --- a/crates/bevy_ui/src/focus.rs +++ b/crates/bevy_ui/src/focus.rs @@ -327,7 +327,7 @@ pub fn ui_focus_system( } /// Walk up the tree child-to-parent checking that `point` is not clipped by any ancestor node. -/// If `entity has an `OverrideClip` component it ignores any inherited clipping and returns true. +/// If `entity` has an `OverrideClip` component it ignores any inherited clipping and returns true. pub fn clip_check_recursive( point: Vec2, entity: Entity,