diff options
author | 2019-09-03 02:56:19 +0200 | |
---|---|---|
committer | 2019-09-03 02:56:19 +0200 | |
commit | a2386773a7aa946f8a9d3529cd621b4be48c07a3 (patch) | |
tree | 93e0a6129b434ba19b2563fcec6ca924ef02d08c /src | |
parent | 1399647158538745e5d513f755d0d6643924235f (diff) | |
download | iced-a2386773a7aa946f8a9d3529cd621b4be48c07a3.tar.gz iced-a2386773a7aa946f8a9d3529cd621b4be48c07a3.tar.bz2 iced-a2386773a7aa946f8a9d3529cd621b4be48c07a3.zip |
Improve wording in `UserInterface::build`
Diffstat (limited to 'src')
-rw-r--r-- | src/user_interface.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/user_interface.rs b/src/user_interface.rs index 2efd831d..20c343eb 100644 --- a/src/user_interface.rs +++ b/src/user_interface.rs @@ -32,7 +32,7 @@ impl<'a, Message, Renderer> UserInterface<'a, Message, Renderer> { /// # Example /// Imagine we want to build a [`UserInterface`] for /// [the counter example that we previously wrote](index.html#usage). Here - /// is how we could build our GUI application indefinitely: + /// is how we could start setting up our application loop: /// /// ```no_run /// use iced::{UserInterface, Cache}; |