Skip to content

Commit e06e163

Browse files
committed
---
yaml --- r: 35673 b: refs/heads/master c: f26df46 h: refs/heads/master i: 35671: 24c4cd0 v: v3
1 parent 47088a3 commit e06e163

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
refs/heads/master: d38f784da64346d5467d1092742884e212949adf
2+
refs/heads/master: f26df46a129d6564d77e6108f2f1d823904b3841
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: eb8fd119c65c67f3b1b8268cc7341c22d39b7b61
55
refs/heads/try: d324a424d8f84b1eb049b12cf34182bda91b0024

trunk/doc/tutorial.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ we have a file `hello.rs` containing this program:
128128

129129
~~~~
130130
fn main() {
131-
core::io::println("hello?");
131+
io::println("hello?");
132132
}
133133
~~~~
134134

@@ -142,8 +142,8 @@ error. If you introduce an error into the program (for example, by changing
142142
an error message like this:
143143

144144
~~~~ {.notrust}
145-
hello.rs:2:4: 2:16 error: unresolved name: core::io::print_with_unicorns
146-
hello.rs:2 core::io::print_with_unicorns("hello?");
145+
hello.rs:2:4: 2:16 error: unresolved name: io::print_with_unicorns
146+
hello.rs:2 io::print_with_unicorns("hello?");
147147
^~~~~~~~~~~~~~~~~~~~~~~
148148
~~~~
149149

@@ -210,7 +210,7 @@ let hi = "hi";
210210
let mut count = 0;
211211
212212
while count < 10 {
213-
core::io::println(fmt!("count: %?", i));
213+
io::println(fmt!("count: %?", i));
214214
count += 1;
215215
}
216216
~~~~

0 commit comments

Comments
 (0)