Skip to content

Commit aca2419

Browse files
committed
docs: Minor tutorial tweaks
1 parent b4f124e commit aca2419

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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)