From 4d1306492f78158dec515dcd4dd0989d781f9113 Mon Sep 17 00:00:00 2001 From: EnochTang Date: Thu, 17 Mar 2022 09:59:47 +0800 Subject: [PATCH] fix: Make the first exercise editable in 10.3 --- src/collections/hashmap.md | 1 + zh-CN/src/collections/hashmap.md | 1 + 2 files changed, 2 insertions(+) diff --git a/src/collections/hashmap.md b/src/collections/hashmap.md index a54ff99..b02db08 100644 --- a/src/collections/hashmap.md +++ b/src/collections/hashmap.md @@ -10,6 +10,7 @@ The hash table implementation is a Rust port of Google’s [SwissTable](https:// 1. 🌟🌟 ```rust,editbale + // FILL in the blanks and FIX the erros use std::collections::HashMap; fn main() { diff --git a/zh-CN/src/collections/hashmap.md b/zh-CN/src/collections/hashmap.md index c3919c2..0ddecd2 100644 --- a/zh-CN/src/collections/hashmap.md +++ b/zh-CN/src/collections/hashmap.md @@ -7,6 +7,7 @@ 1. 🌟🌟 ```rust,editbale + // 填空并修复错误 use std::collections::HashMap; fn main() {