diff options
author | 2024-03-17 14:36:42 +0100 | |
---|---|---|
committer | 2024-03-17 14:36:42 +0100 | |
commit | a034e40f7c0e325938da92894ee34f589f372e0a (patch) | |
tree | c6f57473e758de7c66256d018c7e2a7f83ee60d7 /src | |
parent | 8e1d0b51f13a5561cd20b24be9cc06bc317ea601 (diff) | |
download | iced-a034e40f7c0e325938da92894ee34f589f372e0a.tar.gz iced-a034e40f7c0e325938da92894ee34f589f372e0a.tar.bz2 iced-a034e40f7c0e325938da92894ee34f589f372e0a.zip |
Clarify chain nature of `run` function
Diffstat (limited to 'src')
-rw-r--r-- | src/lib.rs | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -343,6 +343,10 @@ pub type Result = std::result::Result<(), Error>; /// Runs a basic iced application with default [`Settings`] given its title, /// update, and view logic. /// +/// This is equivalent to chaining [`program`] with [`Program::run`]. +/// +/// [`Program::run`]: application::Program::run +/// /// # Example /// ```no_run /// use iced::widget::{button, column, text, Column}; |