about summary refs log tree commit diff
diff options
context:
space:
mode:
authorTrent Ogren <tedwardo2@gmail.com>2014-01-23 10:43:48 -0600
committerTrent Ogren <tedwardo2@gmail.com>2014-01-23 10:43:48 -0600
commite1e7ddc494b9566858e4725f040d70b60af9b1e0 (patch)
tree976edaae2fb5723062a1c6e6e2814efa6bca884c
parent657e3530225410d167d7f1ee827f15bc69cd965e (diff)
downloadrust-e1e7ddc494b9566858e4725f040d70b60af9b1e0.tar.gz
rust-e1e7ddc494b9566858e4725f040d70b60af9b1e0.zip
Fix typo in tutorial
-rw-r--r--doc/tutorial.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/tutorial.md b/doc/tutorial.md
index cc8dd6edd3f..1d0bde7d6bb 100644
--- a/doc/tutorial.md
+++ b/doc/tutorial.md
@@ -1096,7 +1096,7 @@ let y = x.clone();
 
 let z = x;
 
-// and now, it can no longer be used since it has been moved from
+// and now, it can no longer be used since it has been moved
 ~~~
 
 The mutability of a value may be changed by moving it to a new owner: