Merge pull request #646 from qingbeeFED/main

fix(docs):修复ch13-03 html元素结束标签缺失的问题
pull/647/head
KaiserY 2 years ago committed by GitHub
commit ffa12b303f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -56,7 +56,7 @@
{{#rustdoc_include ../listings/ch13-functional-features/listing-13-26/src/lib.rs:here}}
```
<span class="caption">示例 13-26以迭代器作为参数更新 `Config::new` 的签名
<span class="caption">示例 13-26以迭代器作为参数更新 `Config::new` 的签名</span>
`env::args` 函数的标准库文档显示,它返回的迭代器的类型为 `std::env::Args`。我们已经更新了 `Config :: new` 函数的签名,因此参数 `args` 的类型为 `std::env::Args` 而不是 `&[String]`。因为我们拥有 `args` 的所有权,并且将通过对其进行迭代来改变 `args` ,所以我们可以将 `mut` 关键字添加到 `args` 参数的规范中以使其可变。

Loading…
Cancel
Save