From 98f4befcdacda7233a83e3c7b4c40b1c2165924d Mon Sep 17 00:00:00 2001 From: Rami <2418646+rami-github@users.noreply.github.com> Date: Wed, 22 Jun 2022 21:55:51 +0100 Subject: [PATCH] Make first HashMap code segment editable A spelling mistake is preventing the first HashMap challenge from being editable. --- en/src/collections/hashmap.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/en/src/collections/hashmap.md b/en/src/collections/hashmap.md index b02db08..fc2ff7c 100644 --- a/en/src/collections/hashmap.md +++ b/en/src/collections/hashmap.md @@ -9,7 +9,7 @@ The hash table implementation is a Rust port of Google’s [SwissTable](https:// ### Basic Operations 1. 🌟🌟 -```rust,editbale +```rust,editable // FILL in the blanks and FIX the erros use std::collections::HashMap;