Merge branch 'master' into beacon

This commit is contained in:
Héctor Ramón Jiménez 2025-04-05 18:20:31 +02:00
commit 3f67044977
No known key found for this signature in database
GPG key ID: 7CC46565708259A7
62 changed files with 713 additions and 780 deletions

View file

@ -1,7 +1,7 @@
//! Create and run iced applications step by step.
//!
//! # Example
//! ```no_run
//! ```no_run,standalone_crate
//! use iced::widget::{button, column, text, Column};
//! use iced::Theme;
//!
@ -43,7 +43,7 @@ use std::borrow::Cow;
/// Creates an iced [`Application`] given its boot, update, and view logic.
///
/// # Example
/// ```no_run
/// ```no_run,standalone_crate
/// use iced::widget::{button, column, text, Column};
///
/// pub fn main() -> iced::Result {