summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2024-03-17 14:36:42 +0100
committerLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2024-03-17 14:36:42 +0100
commita034e40f7c0e325938da92894ee34f589f372e0a (patch)
treec6f57473e758de7c66256d018c7e2a7f83ee60d7 /src
parent8e1d0b51f13a5561cd20b24be9cc06bc317ea601 (diff)
downloadiced-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.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 902a5f36..d238e78a 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -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};