🚧 Retoques menores en la documentación

This commit is contained in:
Manuel Cillero 2025-12-03 22:56:04 +01:00
parent 10a8a1136c
commit efd4975a50
4 changed files with 12 additions and 8 deletions

View file

@ -18,7 +18,6 @@ pub use indoc::{concatdoc, formatdoc, indoc};
// **< MACROS ÚTILES >******************************************************************************
#[macro_export]
/// Macro para construir una colección de pares clave-valor.
///
/// ```rust
@ -31,6 +30,7 @@ pub use indoc::{concatdoc, formatdoc, indoc};
/// "userGender" => "male",
/// ];
/// ```
#[macro_export]
macro_rules! hm {
( $($key:expr => $value:expr),* $(,)? ) => {{
let mut a = std::collections::HashMap::new();