summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/lib.rs6
1 files changed, 2 insertions, 4 deletions
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