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
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