📝 Correcciones menores de doc y comentarios

This commit is contained in:
Manuel Cillero 2026-04-29 23:45:09 +02:00 committed by Manuel Cillero
parent f7e7ce469d
commit 412446bb5a
3 changed files with 4 additions and 5 deletions

View file

@ -187,10 +187,10 @@ impl<C: Component> Embed<C> {
/// }
/// }; // El *guard* se libera aquí, antes del *drop* de `embed`.
///
/// let embed = Embed::with(Block::new().with_title(L10n::n("Título")));
/// let embed = Embed::with(Block::new().with_title(L10n::n("Title")));
/// {
/// if let Some(mut component) = embed.get() {
/// component.alter_title(L10n::n("Nuevo título"));
/// component.alter_title(L10n::n("New Title"));
/// }
/// }; // El *guard* se libera aquí, antes del *drop* de `embed`.
/// ```