🎨 Mejora la página de bienvenida y el tema básico #6

Merged
manuelcillero merged 37 commits from advanced-welcome-page into main 2025-09-20 12:37:55 +02:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit accab251d8 - Show all commits

View file

@ -269,8 +269,8 @@ pub fn builder_fn(_: TokenStream, item: TokenStream) -> TokenStream {
// Extrae atributos descartando la documentación para incluir en `alter_...()`.
let non_doc_attrs: Vec<_> = attrs
.iter()
.filter(|&a| !a.path().is_ident("doc"))
.cloned()
.filter(|a| !a.path().is_ident("doc"))
.collect();
// Documentación del método alter_...().

View file

@ -314,7 +314,7 @@ impl Context {
.ok_or_else(|| ErrorParam::TypeMismatch {
key,
expected: TypeInfo::FullName.of::<T>(),
saved: *type_name,
saved: type_name,
})
}