about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorKelvin Ly <kelvin.ly1618@gmail.com>2015-04-18 20:25:24 -0400
committerKelvin Ly <kelvin.ly1618@gmail.com>2015-04-18 20:25:24 -0400
commit99d2552c4ef409dc7232a47fbd92bb9df8c98cdc (patch)
tree60af614646eaedb66db0460a8305cde1097f0024 /src
parentd6227dcd6e139c3f598cd6e937cc59214e254ca6 (diff)
downloadrust-99d2552c4ef409dc7232a47fbd92bb9df8c98cdc.tar.gz
rust-99d2552c4ef409dc7232a47fbd92bb9df8c98cdc.zip
Fix typo
Diffstat (limited to 'src')
-rw-r--r--src/librustc/diagnostics.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustc/diagnostics.rs b/src/librustc/diagnostics.rs
index 2d1bf167276..12b65b7feb5 100644
--- a/src/librustc/diagnostics.rs
+++ b/src/librustc/diagnostics.rs
@@ -311,7 +311,7 @@ variable. This error can occur for several cases, the most common of which is
 that there is a mismatch in the expected type that the compiler inferred, and
 the actual type that the user defined a variable as.
 
-let a: char = 7;    // An integral type can't contained in a character, so 
+let a: char = 7;    // An integral type can't be contained in a character, so 
                     // there is a mismatch.
 
 let b: u32 = 7;     // Either use the right type...