From 25f246037b49b04c706be16cb9052eeb868e2246 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sam=20Snowman=28=E8=B5=B5=E6=AD=A3=E4=B8=AD=29?= <529520158@qq.com> Date: Sat, 15 Mar 2025 10:19:28 +0800 Subject: [PATCH] fix grammar --- steps/8/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/steps/8/README.md b/steps/8/README.md index 81bd0d2a..2184c7cc 100644 --- a/steps/8/README.md +++ b/steps/8/README.md @@ -46,7 +46,7 @@ match maybe_value { > IMPORTANT NOTE! -What you SHOULD NOT do is blindly `unwrap()` options. This will result in a `panic` in your code, which is exactly the kind of thing Rust was designed to prevent! Instead, you should always explicitly handle all of your different logical cases, and if you let Rust do it's job, your code will be super safe. +What you SHOULD NOT do is blindly `unwrap()` options. This will result in a `panic` in your code, which is exactly the kind of thing Rust was designed to prevent! Instead, you should always explicitly handle all of your different logical cases, and if you let Rust do its job, your code will be super safe. In the context of what we are designing for with the balances module, we have a map which has an arbitrary number of user keys, and their balance values.