Add missing dot in unfocus operation docs

This commit is contained in:
Héctor 2025-02-11 20:48:00 +01:00 committed by GitHub
parent b80c23fd94
commit d91e426dab
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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;