]> git.lizzy.rs Git - rust.git/blobdiff - src/librustc/diagnostics.rs
Remove rogue I
[rust.git] / src / librustc / diagnostics.rs
index cde8e7a6d1e1320165d4860d08b8bf4bb89bdd43..6a5910074d91592c5aa5c38d05b786a069dda96e 100644 (file)
@@ -1337,7 +1337,7 @@ fn foo<T>(t: T) where T: Trait<AssociatedType=u32> {
 
     // `for`-loops use a protocol based on the `Iterator`
     // trait. Each item yielded in a `for` loop has the
-    // type `Iterator::Item` -- that is,I `Item` is the
+    // type `Iterator::Item` -- that is, `Item` is the
     // associated type of the concrete iterator impl.
     for v in &vs {
 //      ~    ~~~