diff options
author | 2025-02-11 20:48:00 +0100 | |
---|---|---|
committer | 2025-02-11 20:48:00 +0100 | |
commit | d91e426dab666acbdcd99627910541c0ab4d6ce6 (patch) | |
tree | eb1a2f2c0536c386874aba07989267af97206907 | |
parent | b80c23fd9423a8ce4a168779ec753970311be50f (diff) | |
download | iced-d91e426dab666acbdcd99627910541c0ab4d6ce6.tar.gz iced-d91e426dab666acbdcd99627910541c0ab4d6ce6.tar.bz2 iced-d91e426dab666acbdcd99627910541c0ab4d6ce6.zip |
Add missing dot in `unfocus` operation docs
-rw-r--r-- | core/src/widget/operation/focusable.rs | 2 |
1 files changed, 1 insertions, 1 deletions
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<T>(target: Id) -> impl Operation<T> { Focus { target } } -/// Produces an [`Operation`] that unfocuses the focused widget +/// Produces an [`Operation`] that unfocuses the focused widget. pub fn unfocus<T>() -> impl Operation<T> { struct Unfocus; |