From d6b37e9d3492b2ab7eb056f879c90419eb99a54e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=B9=BD=E9=A6=99=E4=B9=90=E5=AE=B9?= <109068213+yxlr123@users.noreply.github.com> Date: Wed, 26 Jul 2023 14:39:45 +0800 Subject: [PATCH] Update base-features.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 错字 --- src/basic-practice/base-features.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/basic-practice/base-features.md b/src/basic-practice/base-features.md index 4e39cdaa..b564393a 100644 --- a/src/basic-practice/base-features.md +++ b/src/basic-practice/base-features.md @@ -45,7 +45,7 @@ fn main() { -`collect` 方法其实并不是`std::env`包提供的,而是迭代器自带的方法(`env::args()` 会返回一个迭代器),它会将迭代器消费后转换成我们想要的集合类型,关于迭代器和 `collect` 的具体介绍,请参加[这里](https://course.rs/advance/functional-programing/iterator.html)。 +`collect` 方法其实并不是`std::env`包提供的,而是迭代器自带的方法(`env::args()` 会返回一个迭代器),它会将迭代器消费后转换成我们想要的集合类型,关于迭代器和 `collect` 的具体介绍,请参考[这里](https://course.rs/advance/functional-programing/iterator.html)。 最后,代码中使用 `dbg!` 宏来输出读取到的数组内容,来看看长啥样: ```shell @@ -170,4 +170,4 @@ To an admiring bog! 完美,虽然代码还有很多瑕疵,例如所有内容都在 `main` 函数,这个不符合软件工程,没有错误处理,功能不完善等。不过没关系,万事开头难,好歹我们成功迈开了第一步。 -好了,是时候重构赚波 KPI 了,读者:are you serious? 这就开始重构了? \ No newline at end of file +好了,是时候重构赚波 KPI 了,读者:are you serious? 这就开始重构了?