From 3f7ceb8be69bb56bffcaa0224d779246b7493d41 Mon Sep 17 00:00:00 2001 From: Johann Birnick Date: Thu, 29 May 2025 21:08:45 -0700 Subject: [PATCH] fix docs --- src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index e9ca3a04..b7f0cfd0 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -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`]. ///