📝 [config] Amplía y corrige documentación

This commit is contained in:
Manuel Cillero 2025-07-06 20:08:17 +02:00
parent f7dbd90af2
commit 6b8eee46f9
4 changed files with 108 additions and 19 deletions

View file

@ -21,7 +21,7 @@ use quote::quote;
///
/// # Ejemplos
///
/// ```rust#ignore
/// ```rust,ignore
/// #[pagetop::main]
/// async fn main() {
/// async { println!("Hello world!"); }.await
@ -42,7 +42,7 @@ pub fn main(_: TokenStream, item: TokenStream) -> TokenStream {
///
/// # Ejemplos
///
/// ```rust#ignore
/// ```rust,ignore
/// #[pagetop::test]
/// async fn test() {
/// assert_eq!(async { "Hello world" }.await, "Hello world");