💡 Retoques menores en comentarios para documentar

This commit is contained in:
Manuel Cillero 2025-08-03 13:36:00 +02:00
parent bf3ea43b53
commit 223a98569b
15 changed files with 39 additions and 38 deletions

View file

@ -28,7 +28,8 @@ pub type ExtensionRef = &'static dyn Extension;
pub trait Extension: AnyInfo + Send + Sync {
/// Nombre legible para el usuario.
///
/// Predeterminado por el [`short_name`](AnyInfo::short_name) del tipo asociado a la extensión.
/// Predeterminado por el [`short_name()`](AnyInfo::short_name) del tipo asociado a la
/// extensión.
fn name(&self) -> L10n {
L10n::n(self.short_name())
}