From d38f784da64346d5467d1092742884e212949adf Mon Sep 17 00:00:00 2001 From: Brian Anderson Date: Thu, 20 Dec 2012 13:50:43 -0800 Subject: [PATCH] tutorial: Typo --- doc/tutorial.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/tutorial.md b/doc/tutorial.md index 0367cabd3fa8..43345e5585f0 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;