File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
---
2
2
refs/heads/master: e430a699f2c60890d9b86069fd0c68a70ece7120
3
3
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4
- refs/heads/snap-stage3: b4f124e5f810b178d7413f0a9b4db97c83063464
4
+ refs/heads/snap-stage3: aca2419d55c6c5defcaa97d047da5ed7d7c8147e
5
5
refs/heads/try: ffbe0e0e00374358b789b0037bcb3a577cd218be
6
6
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
7
7
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
Original file line number Diff line number Diff line change @@ -1509,7 +1509,7 @@ fn call_twice(f: fn()) { f(); f(); }
1509
1509
call_twice(|| { ~"I am an inferred stack closure"; } );
1510
1510
call_twice(fn&() { ~"I am also a stack closure"; } );
1511
1511
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"; });
1513
1513
fn bare_function() { ~"I am a plain function"; }
1514
1514
call_twice(bare_function);
1515
1515
~~~~
@@ -2121,7 +2121,7 @@ Rust program.
2121
2121
2122
2122
This library is documented [ here] [ core ] .
2123
2123
2124
- [ core ] : http://doc.rust-lang.org/doc/core
2124
+ [ core ] : core/index.html
2125
2125
2126
2126
## A minimal example
2127
2127
You can’t perform that action at this time.
0 commit comments