Skip to content

Commit 8cb0ddd

Browse files
committed
---
yaml --- r: 22322 b: refs/heads/snap-stage3 c: aca2419 h: refs/heads/master v: v3
1 parent 14bc29c commit 8cb0ddd

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,7 +1,7 @@
11
---
22
refs/heads/master: e430a699f2c60890d9b86069fd0c68a70ece7120
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4-
refs/heads/snap-stage3: b4f124e5f810b178d7413f0a9b4db97c83063464
4+
refs/heads/snap-stage3: aca2419d55c6c5defcaa97d047da5ed7d7c8147e
55
refs/heads/try: ffbe0e0e00374358b789b0037bcb3a577cd218be
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b

branches/snap-stage3/doc/tutorial.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1509,7 +1509,7 @@ fn call_twice(f: fn()) { f(); f(); }
15091509
call_twice(|| { ~"I am an inferred stack closure"; } );
15101510
call_twice(fn&() { ~"I am also a stack closure"; } );
15111511
call_twice(fn@() { ~"I am a managed closure"; });
1512-
call_twice(fn~() { ~"I am a owned closure"; });
1512+
call_twice(fn~() { ~"I am an owned closure"; });
15131513
fn bare_function() { ~"I am a plain function"; }
15141514
call_twice(bare_function);
15151515
~~~~
@@ -2121,7 +2121,7 @@ Rust program.
21212121

21222122
This library is documented [here][core].
21232123

2124-
[core]: http://doc.rust-lang.org/doc/core
2124+
[core]: core/index.html
21252125

21262126
## A minimal example
21272127

0 commit comments

Comments
 (0)