about summary refs log tree commit diff
diff options
context:
space:
mode:
authorBrian Anderson <banderson@mozilla.com>2012-12-20 13:50:43 -0800
committerBrian Anderson <banderson@mozilla.com>2012-12-20 16:32:44 -0800
commitd38f784da64346d5467d1092742884e212949adf (patch)
treea49490abc8d9826a9fbb9810cb9f8f5bb39fea84
parentb7354f114d392ba8c09b8f39ae5b7945c9441a62 (diff)
tutorial: Typo
-rw-r--r--doc/tutorial.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/tutorial.md b/doc/tutorial.md
index 0367cabd3fa..43345e5585f 100644
--- a/doc/tutorial.md
+++ b/doc/tutorial.md
@@ -217,7 +217,7 @@ while count < 10 {
 
 Although Rust can almost always infer the types of local variables, you
 can specify a variable's type by following it with a colon, then the type
-name. Constants, an the other hand, always require a type annotation.
+name. Constants, on the other hand, always require a type annotation.
 
 ~~~~
 const monster_factor: float = 57.8;