From c57e3c4b0c766eceb2d025cf9acc060b3f19a8cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?On=C3=A8?= <43485962+c-git@users.noreply.github.com> Date: Tue, 26 May 2026 10:40:42 -0400 Subject: [PATCH] Fix typo in interaction_snapshot documentation (#8158) Fixes a small typo * [x] I have followed the instructions in the PR template --- crates/egui/src/context.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/egui/src/context.rs b/crates/egui/src/context.rs index 072f253be..cd9cc896b 100644 --- a/crates/egui/src/context.rs +++ b/crates/egui/src/context.rs @@ -4039,7 +4039,7 @@ impl Context { /// ## Interaction impl Context { - /// Read you what widgets are currently being interacted with. + /// Read which widgets are currently being interacted with. pub fn interaction_snapshot(&self, reader: impl FnOnce(&InteractionSnapshot) -> R) -> R { self.write(|w| reader(&w.viewport().interact_widgets)) }