From 27dd0dda1bb3e0b6b77157dfb3c16789fc1a91de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Audebert?= Date: Sat, 6 Jun 2015 18:29:10 +0200 Subject: [PATCH] Fix small typo in diagnostics.rs --- src/librustc/diagnostics.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/librustc/diagnostics.rs b/src/librustc/diagnostics.rs index 5e79e5a5a4ed2..67b0994378194 100644 --- a/src/librustc/diagnostics.rs +++ b/src/librustc/diagnostics.rs @@ -559,7 +559,7 @@ impl Trait for i8 { type AssociatedType = &'static str; } foo(3_i8); // Here, we invoke `foo` with an `i8`, which does not satisfy -// the constraint `::AssociatedType=32`, and +// the constraint `::AssociatedType=u32`, and // therefore the type-checker complains with this error code. ```