Fix documentation of run function

This commit is contained in:
Héctor Ramón Jiménez 2024-03-17 14:29:02 +01:00
parent 54f44754eb
commit 8e1d0b51f1
No known key found for this signature in database
GPG key ID: 7CC46565708259A7

View file

@ -340,10 +340,8 @@ pub type Element<
/// [`Application`]: crate::Application /// [`Application`]: crate::Application
pub type Result = std::result::Result<(), Error>; pub type Result = std::result::Result<(), Error>;
/// Runs a basic iced application with default [`Settings`] given /// Runs a basic iced application with default [`Settings`] given its title,
/// - its window title, /// update, and view logic.
/// - its update logic,
/// - and its view logic.
/// ///
/// # Example /// # Example
/// ```no_run /// ```no_run