about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--doc/tutorial.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/tutorial.md b/doc/tutorial.md
index 7b4c5c5e7b6..7ed93e47a68 100644
--- a/doc/tutorial.md
+++ b/doc/tutorial.md
@@ -1509,7 +1509,7 @@ fn call_twice(f: fn()) { f(); f(); }
 call_twice(|| { ~"I am an inferred stack closure"; } );
 call_twice(fn&() { ~"I am also a stack closure"; } );
 call_twice(fn@() { ~"I am a managed closure"; });
-call_twice(fn~() { ~"I am a owned closure"; });
+call_twice(fn~() { ~"I am an owned closure"; });
 fn bare_function() { ~"I am a plain function"; }
 call_twice(bare_function);
 ~~~~
@@ -2121,7 +2121,7 @@ Rust program.
 
 This library is documented [here][core].
 
-[core]: http://doc.rust-lang.org/doc/core
+[core]: core/index.html
 
 ## A minimal example