From 24153eb30f7f4384f6aebf6fef9e4aea35fdf416 Mon Sep 17 00:00:00 2001 From: Brian Anderson Date: Wed, 26 Sep 2012 16:19:07 -0700 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 bf774a19ace..99b858cb2cf 100644 --- a/doc/tutorial.md +++ b/doc/tutorial.md @@ -421,7 +421,7 @@ Rust will assume that an unsuffixed integer literal has type ~~~~ let a = 1; // a is an int let b = 10i; // b is an int, due to the 'i' suffix -let c = 100u; // c as a uint +let c = 100u; // c is a uint let d = 1000i32; // d is an i32 ~~~~