diff options
| author | Nick Hamann <nick@wabbo.org> | 2015-07-13 15:55:53 -0500 |
|---|---|---|
| committer | Nick Hamann <nick@wabbo.org> | 2015-07-13 15:55:53 -0500 |
| commit | 243982443f0b94c8fb7dca42b7d8f3d5f7f0209f (patch) | |
| tree | 370c8106411ba481fbb08347c78d8eea59ed0379 | |
| parent | 5559d2ba046268a4597aba7901a48884ad7a97c0 (diff) | |
Clarify E0117 explanation.
| -rw-r--r-- | src/librustc_typeck/diagnostics.rs | 4 |
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 |
