🩹 Correcciones menores en comentarios y código

This commit is contained in:
Manuel Cillero 2025-10-25 19:04:35 +02:00
parent 1bf7ada607
commit 5ac26c0b06
4 changed files with 8 additions and 9 deletions

View file

@ -21,7 +21,7 @@ pub type ExtensionRef = &'static dyn Extension;
///
/// impl Extension for Blog {
/// fn name(&self) -> L10n { L10n::n("Blog") }
/// fn description(&self) -> L10n { L10n::n("Sistema de blogs") }
/// fn description(&self) -> L10n { L10n::n("Blog system") }
/// }
/// ```
pub trait Extension: AnyInfo + Send + Sync {