Skip to content

Commit 22d0931

Browse files
committed
---
yaml --- r: 35674 b: refs/heads/master c: 21c9d08 h: refs/heads/master v: v3
1 parent e06e163 commit 22d0931

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
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: f26df46a129d6564d77e6108f2f1d823904b3841
2+
refs/heads/master: 21c9d0858b1ee0c6fe508a9eb1d229713a2649e4
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: eb8fd119c65c67f3b1b8268cc7341c22d39b7b61
55
refs/heads/try: d324a424d8f84b1eb049b12cf34182bda91b0024

trunk/doc/tutorial.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ parentheses, while their bodies *must* be wrapped in
189189
braces. Single-statement, unbraced bodies are not allowed.
190190

191191
~~~~
192-
# mod universe { fn recalibrate() -> bool { true } }
192+
# mod universe { pub fn recalibrate() -> bool { true } }
193193
fn main() {
194194
/* A simple loop */
195195
loop {
@@ -210,7 +210,7 @@ let hi = "hi";
210210
let mut count = 0;
211211
212212
while count < 10 {
213-
io::println(fmt!("count: %?", i));
213+
io::println(fmt!("count: %?", count));
214214
count += 1;
215215
}
216216
~~~~

0 commit comments

Comments
 (0)