Fix redundant expression in iced_test documentation

This commit is contained in:
Héctor Ramón Jiménez 2024-12-17 04:32:49 +01:00
parent 5220a064c5
commit ecd5227ef7
No known key found for this signature in database
GPG key ID: 7CC46565708259A7

View file

@ -38,7 +38,7 @@
//! [`Simulator::click`] takes a [`Selector`]. A [`Selector`] describes a way to query the widgets of an interface. In this case, //! [`Simulator::click`] takes a [`Selector`]. A [`Selector`] describes a way to query the widgets of an interface. In this case,
//! [`selector::text`] lets us select a widget by the text it contains. //! [`selector::text`] lets us select a widget by the text it contains.
//! //!
//! We can now process any messages produced by these interactions, and then make sure that the final value of our counter is //! We can now process any messages produced by these interactions and then assert that the final value of our counter is
//! indeed `1`! //! indeed `1`!
//! //!
//! ```rust,no_run //! ```rust,no_run