about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2014-01-24 07:26:31 -0800
committerbors <bors@rust-lang.org>2014-01-24 07:26:31 -0800
commit1ea0947c5d1d113f58beafd98a6bb966e07b6f60 (patch)
tree1750018c9bc1f932af847e3d955c38a2d1849761
parenta5ab960d2e443f61511b19ad80221d1f99fd0692 (diff)
parente1e7ddc494b9566858e4725f040d70b60af9b1e0 (diff)
auto merge of #11753 : misfo/rust/patch-1, r=pcwalton
-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: