File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -355,7 +355,7 @@ Hello, world!
355355Bam! We build our project with ` cargo build ` , and run it with
356356` ./target/hello_world ` . This hasn't bought us a whole lot over our simple use
357357of ` rustc ` , but think about the future: when our project has more than one
358- file, we would need to call ` rustc ` twice , and pass it a bunch of options to
358+ file, we would need to call ` rustc ` more than once , and pass it a bunch of options to
359359tell it to build everything together. With Cargo, as our project grows, we can
360360just ` cargo build ` and it'll work the right way.
361361
@@ -977,7 +977,7 @@ fn main() {
977977```
978978
979979Even though Rust functions can only return one value, a tuple _ is_ one value,
980- that happens to be made up of two . You can also see in this example how you
980+ that happens to be made up of more than one value . You can also see in this example how you
981981can destructure a pattern returned by a function, as well.
982982
983983Tuples are a very simple data structure, and so are not often what you want.
You can’t perform that action at this time.
0 commit comments