From d91e426dab666acbdcd99627910541c0ab4d6ce6 Mon Sep 17 00:00:00 2001 From: Héctor Date: Tue, 11 Feb 2025 20:48:00 +0100 Subject: Add missing dot in `unfocus` operation docs --- core/src/widget/operation/focusable.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'core/src') diff --git a/core/src/widget/operation/focusable.rs b/core/src/widget/operation/focusable.rs index cb0c7845..a1327bc1 100644 --- a/core/src/widget/operation/focusable.rs +++ b/core/src/widget/operation/focusable.rs @@ -61,7 +61,7 @@ pub fn focus(target: Id) -> impl Operation { Focus { target } } -/// Produces an [`Operation`] that unfocuses the focused widget +/// Produces an [`Operation`] that unfocuses the focused widget. pub fn unfocus() -> impl Operation { struct Unfocus; -- cgit