diff options
| author | bors <bors@rust-lang.org> | 2014-01-24 07:26:31 -0800 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2014-01-24 07:26:31 -0800 |
| commit | 1ea0947c5d1d113f58beafd98a6bb966e07b6f60 (patch) | |
| tree | 1750018c9bc1f932af847e3d955c38a2d1849761 | |
| parent | a5ab960d2e443f61511b19ad80221d1f99fd0692 (diff) | |
| parent | e1e7ddc494b9566858e4725f040d70b60af9b1e0 (diff) | |
auto merge of #11753 : misfo/rust/patch-1, r=pcwalton
| -rw-r--r-- | doc/tutorial.md | 2 |
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: |
