]> git.lizzy.rs Git - rust.git/commitdiff
Clarify E0117 explanation.
authorNick Hamann <nick@wabbo.org>
Mon, 13 Jul 2015 20:55:53 +0000 (15:55 -0500)
committerNick Hamann <nick@wabbo.org>
Mon, 13 Jul 2015 20:55:53 +0000 (15:55 -0500)
src/librustc_typeck/diagnostics.rs

index 57a637da9502d68c8c71ace84b45d60b2be1f619..3e4a2c3116ea4761ae4cc45b132d4c3576562c77 100644 (file)
@@ -1259,8 +1259,8 @@ trait defined in another crate) where
 impl Drop for u32 {}
 ```
 
-To avoid this error, ensure that at least one local type is referenced by
-the `impl`:
+To avoid this kind of error, ensure that at least one local type is referenced
+by the `impl`:
 
 ```
 pub struct Foo; // you define your type in your crate