Skip to content

Commit 606a4df

Browse files
committed
---
yaml --- r: 39531 b: refs/heads/incoming c: f26df46 h: refs/heads/master i: 39529: 8382c1e 39527: 4554dbe v: v3
1 parent 64c5841 commit 606a4df

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
@@ -6,7 +6,7 @@ refs/heads/try: 3d5418789064fdb463e872a4e651af1c628a3650
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
88
refs/heads/try2: a810c03263670238bccd64cabb12a23a46e3a278
9-
refs/heads/incoming: d38f784da64346d5467d1092742884e212949adf
9+
refs/heads/incoming: f26df46a129d6564d77e6108f2f1d823904b3841
1010
refs/heads/dist-snap: 22efa39382d41b084fde1719df7ae8ce5697d8c9
1111
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
1212
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503

branches/incoming/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)