We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4543380 commit 57b18f1Copy full SHA for 57b18f1
src/ch13-03-improving-our-io-project.md
@@ -154,6 +154,9 @@ we’re passing ownership of the iterator returned from `env::args` to
154
`Config::build` directly.
155
-->
156
157
+`env::args`関数は、イテレータを返します!イテレータの値をベクタに集結させ、それからスライスを`Config::build`に渡すのではなく、
158
+今では`env::args`から返ってくるイテレータの所有権を直接`Config::build`に渡しています。
159
+
160
<!--
161
Next, we need to update the definition of `Config::build`. In your I/O
162
project’s *src/lib.rs* file, let’s change the signature of `Config::build` to
0 commit comments