diff options
author | 2019-08-28 06:56:10 +0200 | |
---|---|---|
committer | 2019-08-28 06:57:40 +0200 | |
commit | 51050fc45ce0e84e40ab801deefe35baf4ee3c2c (patch) | |
tree | 1cd34badc9773a26348a53a6698fb31ef81dc933 /src | |
parent | 8758dd446f25553049b6dd2ab9be0007febb4877 (diff) | |
download | iced-51050fc45ce0e84e40ab801deefe35baf4ee3c2c.tar.gz iced-51050fc45ce0e84e40ab801deefe35baf4ee3c2c.tar.bz2 iced-51050fc45ce0e84e40ab801deefe35baf4ee3c2c.zip |
Improve `Overview` section in `README`
Diffstat (limited to 'src')
-rw-r--r-- | src/lib.rs | 11 |
1 files changed, 6 insertions, 5 deletions
@@ -43,8 +43,8 @@ //! } //! ``` //! -//! Now that we have state... When will it change? When either button is pressed! -//! These user interactions are our __messages__: +//! Next, we need to define the possible user interactions of our counter: +//! the button presses. These interactions are our __messages__: //! //! ``` //! #[derive(Debug, Clone, Copy)] @@ -54,7 +54,8 @@ //! } //! ``` //! -//! Next, let's put it all together in our __view logic__: +//! Now, let's show the actual counter by putting it all together in our +//! __view logic__: //! //! ``` //! # use iced::button; @@ -139,8 +140,8 @@ //! } //! ``` //! -//! Finally, we need to be able to react to the __messages__ and change our -//! __state__ accordingly in our __update logic__: +//! Finally, we need to be able to react to any produced __messages__ and change +//! our __state__ accordingly in our __update logic__: //! //! ``` //! # use iced::button; |