From ecd5227ef73f6273d45a359cf86e24815a53036c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A9ctor=20Ram=C3=B3n=20Jim=C3=A9nez?= Date: Tue, 17 Dec 2024 04:32:49 +0100 Subject: [PATCH] Fix redundant expression in `iced_test` documentation --- test/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/src/lib.rs b/test/src/lib.rs index 9756e42769..73726f0808 100644 --- a/test/src/lib.rs +++ b/test/src/lib.rs @@ -38,7 +38,7 @@ //! [`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. //! -//! 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`! //! //! ```rust,no_run