diff options
author | 2024-03-17 14:29:02 +0100 | |
---|---|---|
committer | 2024-03-17 14:29:02 +0100 | |
commit | 8e1d0b51f13a5561cd20b24be9cc06bc317ea601 (patch) | |
tree | a3aedfa1ff3c8e7eaef8f3a3a5e86b46682a11fa /src | |
parent | 54f44754eb216d4b2c08cd2a7c3582f1dc295205 (diff) | |
download | iced-8e1d0b51f13a5561cd20b24be9cc06bc317ea601.tar.gz iced-8e1d0b51f13a5561cd20b24be9cc06bc317ea601.tar.bz2 iced-8e1d0b51f13a5561cd20b24be9cc06bc317ea601.zip |
Fix documentation of `run` function
Diffstat (limited to 'src')
-rw-r--r-- | src/lib.rs | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -340,10 +340,8 @@ pub type Element< /// [`Application`]: crate::Application pub type Result = std::result::Result<(), Error>; -/// Runs a basic iced application with default [`Settings`] given -/// - its window title, -/// - its update logic, -/// - and its view logic. +/// Runs a basic iced application with default [`Settings`] given its title, +/// update, and view logic. /// /// # Example /// ```no_run |