🎨 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 3 additions and 3 deletions
Showing only changes of commit fe3bbcb131 - Show all commits

View file

@ -191,7 +191,7 @@ pub fn builder_fn(_: TokenStream, item: TokenStream) -> TokenStream {
// Genera el método alter_...() con el código del método with_...().
let fn_alter_doc =
format!("Igual que [`Self::{fn_with_name_str}()`], pero sin usar el patrón *builder*.");
format!("Equivalente a [`Self::{fn_with_name_str}()`], pero sin usar el patrón *builder*.");
let fn_alter = quote! {
#[doc = #fn_alter_doc]

View file

@ -67,8 +67,8 @@ async fn poweredby_link_points_to_crates_io() {
let html = render_component(&p);
assert!(
html.contains("https://crates.io/crates/pagetop"),
"Link should point to crates.io/pagetop"
html.contains("https://pagetop.cillero.es"),
"Link should point to pagetop.cillero.es"
);
}