We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b4f124e commit aca2419Copy full SHA for aca2419
doc/tutorial.md
@@ -1509,7 +1509,7 @@ fn call_twice(f: fn()) { f(); f(); }
1509
call_twice(|| { ~"I am an inferred stack closure"; } );
1510
call_twice(fn&() { ~"I am also a stack closure"; } );
1511
call_twice(fn@() { ~"I am a managed closure"; });
1512
-call_twice(fn~() { ~"I am a owned closure"; });
+call_twice(fn~() { ~"I am an owned closure"; });
1513
fn bare_function() { ~"I am a plain function"; }
1514
call_twice(bare_function);
1515
~~~~
@@ -2121,7 +2121,7 @@ Rust program.
2121
2122
This library is documented [here][core].
2123
2124
-[core]: http://doc.rust-lang.org/doc/core
+[core]: core/index.html
2125
2126
## A minimal example
2127
0 commit comments