about summary refs log tree commit diff
path: root/doc/tutorial.md
diff options
context:
space:
mode:
Diffstat (limited to 'doc/tutorial.md')
-rw-r--r--doc/tutorial.md1
1 files changed, 0 insertions, 1 deletions
diff --git a/doc/tutorial.md b/doc/tutorial.md
index ce21edf1b40..35abe8e87d6 100644
--- a/doc/tutorial.md
+++ b/doc/tutorial.md
@@ -1469,7 +1469,6 @@ let mut owned = ~20;
 let mut value = 30;
 let borrowed = &mut value;
 
-*managed = *owned + 10;
 *owned = *borrowed + 100;
 *borrowed = *managed + 1000;
 ~~~