From ee2a44a66cbf7ed70c525da152941bb641438995 Mon Sep 17 00:00:00 2001 From: Tait Hoyem Date: Fri, 28 Jun 2024 07:55:05 -0600 Subject: [PATCH] Fix imports on example --- atspi-common/src/state.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/atspi-common/src/state.rs b/atspi-common/src/state.rs index ff9b66e2..e0841ef3 100644 --- a/atspi-common/src/state.rs +++ b/atspi-common/src/state.rs @@ -347,6 +347,7 @@ impl StateSet { /// /// ## Example /// ```rust + /// # use atspi_common::{State, StateSet}; /// let states = State::Focusable | State::Sensitive | State::Active; /// let set = StateSet::new(states); ///