summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorLibravatar Héctor <hector0193@gmail.com>2025-02-11 20:48:00 +0100
committerLibravatar GitHub <noreply@github.com>2025-02-11 20:48:00 +0100
commitd91e426dab666acbdcd99627910541c0ab4d6ce6 (patch)
treeeb1a2f2c0536c386874aba07989267af97206907 /core
parentb80c23fd9423a8ce4a168779ec753970311be50f (diff)
downloadiced-d91e426dab666acbdcd99627910541c0ab4d6ce6.tar.gz
iced-d91e426dab666acbdcd99627910541c0ab4d6ce6.tar.bz2
iced-d91e426dab666acbdcd99627910541c0ab4d6ce6.zip
Add missing dot in `unfocus` operation docs
Diffstat (limited to 'core')
-rw-r--r--core/src/widget/operation/focusable.rs2
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;