From 8e1d0b51f13a5561cd20b24be9cc06bc317ea601 Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Sun, 17 Mar 2024 14:29:02 +0100 Subject: Fix documentation of `run` function --- src/lib.rs | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'src') diff --git a/src/lib.rs b/src/lib.rs index def020e0..902a5f36 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -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 -- cgit