summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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;