about summary refs log tree commit diff
diff options
context:
space:
mode:
authorNick Hamann <nick@wabbo.org>2015-07-13 15:55:53 -0500
committerNick Hamann <nick@wabbo.org>2015-07-13 15:55:53 -0500
commit243982443f0b94c8fb7dca42b7d8f3d5f7f0209f (patch)
tree370c8106411ba481fbb08347c78d8eea59ed0379
parent5559d2ba046268a4597aba7901a48884ad7a97c0 (diff)
Clarify E0117 explanation.
-rw-r--r--src/librustc_typeck/diagnostics.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/librustc_typeck/diagnostics.rs b/src/librustc_typeck/diagnostics.rs
index 57a637da950..3e4a2c3116e 100644
--- a/src/librustc_typeck/diagnostics.rs
+++ b/src/librustc_typeck/diagnostics.rs
@@ -1259,8 +1259,8 @@ Here's one example of this error:
 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