Fix typo in tutorial

This commit is contained in:
Trent Ogren 2014-01-23 10:43:48 -06:00
parent 657e353022
commit e1e7ddc494

View file

@ -1096,7 +1096,7 @@ let y = x.clone();
let z = x; 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: The mutability of a value may be changed by moving it to a new owner: