Merge pull request #2972 from jbirnick/master

Fix docs
This commit is contained in:
Héctor 2025-06-03 11:56:30 +02:00 committed by GitHub
commit bc4275c522
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -659,8 +659,8 @@ pub type Element<
/// The result of running an iced program.
pub type Result = std::result::Result<(), Error>;
/// Runs a basic iced application with default [`Settings`] given its title,
/// update, and view logic.
/// Runs a basic iced application with default [`Settings`] given its update
/// and view logic.
///
/// This is equivalent to chaining [`application()`] with [`Application::run`].
///