From cbbfda600943e6a0637e4def21e4ed1f272da6af Mon Sep 17 00:00:00 2001 From: Jorge Aparicio Date: Thu, 25 Jun 2020 09:01:47 +0000 Subject: [PATCH] Update beginner/README.md Co-authored-by: Lotte Steenbrink --- beginner/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beginner/README.md b/beginner/README.md index b4d3dfe..5ce3300 100644 --- a/beginner/README.md +++ b/beginner/README.md @@ -446,7 +446,7 @@ Our suggestion is to use a dictionary / map. `std::collections::HashMap` is not [`heapless`]: https://docs.rs/heapless [crates.io]: https://crates.io/crates/heapless -``` toml +``` rust use heapless::IndexMap; // a dictionary / map use heapless::Vec; // like `std::Vec` but stack-allocated ```