about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAnthony Juckel <ajuckel@gmail.com>2013-04-03 19:10:09 -0500
committerAnthony Juckel <ajuckel@gmail.com>2013-04-03 19:10:09 -0500
commite2c7a4def2730e33babf26ff834abe32a1de9a04 (patch)
tree4568fd3c3e27985a3af5a8bb57831adb3df93819
parent5f13e9ccc2e3328d4cd8ca49f84e6840dd998346 (diff)
downloadrust-e2c7a4def2730e33babf26ff834abe32a1de9a04.tar.gz
rust-e2c7a4def2730e33babf26ff834abe32a1de9a04.zip
Simple typo fix
-rw-r--r--doc/tutorial.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/tutorial.md b/doc/tutorial.md
index 42b0d5a585a..499eb7e3878 100644
--- a/doc/tutorial.md
+++ b/doc/tutorial.md
@@ -988,7 +988,7 @@ custom destructors.
 
 # Boxes
 
-Many modern languages represent values as as pointers to heap memory by
+Many modern languages represent values as pointers to heap memory by
 default. In contrast, Rust, like C and C++, represents such types directly.
 Another way to say this is that aggregate data in Rust are *unboxed*. This
 means that if you `let x = Point { x: 1f, y: 1f };`, you are creating a struct