docs(macro_map): fix small typos

This commit is contained in:
michele 2023-10-04 11:21:27 +01:00 committed by Michele
parent cdd279189f
commit 474947371a
1 changed files with 2 additions and 2 deletions

View File

@ -2,9 +2,9 @@
### Instructions
Create a macro rule called `hash_map` to initialize and declare an `HashMap` at the same time, very similar to what `vec!` macro does for `Vector`.
Create a macro rule called `hash_map` to initialize and declare a `HashMap` at the same time, very similar to what `vec!` macro does for `Vector`.
> Your macro should accept both leading commas and non leading commas syntax to be more flexible in terms of coding style and reflect the language general style.
> Your macro should accept both leading and non leading commas syntax to be more flexible in terms of coding style and reflect the language general style.
### Expected Macro