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 f15ccc0 commit a24b9e0Copy full SHA for a24b9e0
doc/tutorial.md
@@ -128,7 +128,7 @@ we have a file `hello.rs` containing this program:
128
129
~~~~
130
fn main() {
131
- io::println("hello? yes, this is rust");
+ io::println("hello?");
132
}
133
134
@@ -143,7 +143,7 @@ an error message like this:
143
144
~~~~ {.notrust}
145
hello.rs:2:4: 2:16 error: unresolved name: io::print_with_unicorns
146
-hello.rs:2 io::print_with_unicorns("hello? yes, this is rust");
+hello.rs:2 io::print_with_unicorns("hello?");
147
^~~~~~~~~~~~~~~~~~~~~~~
148
149
0 commit comments