diff options
author | 2024-12-17 04:32:49 +0100 | |
---|---|---|
committer | 2024-12-17 04:32:49 +0100 | |
commit | ecd5227ef73f6273d45a359cf86e24815a53036c (patch) | |
tree | 00fb29442c04e86bcae030c932241c261795a11d /test | |
parent | 5220a064c5054e872fd2f8922aa83838bf066949 (diff) | |
download | iced-ecd5227ef73f6273d45a359cf86e24815a53036c.tar.gz iced-ecd5227ef73f6273d45a359cf86e24815a53036c.tar.bz2 iced-ecd5227ef73f6273d45a359cf86e24815a53036c.zip |
Fix redundant expression in `iced_test` documentation
Diffstat (limited to 'test')
-rw-r--r-- | test/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/src/lib.rs b/test/src/lib.rs index 9756e427..73726f08 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 |