rust/src/librustc_errors
Jonathan Turner 9072861c20 Rollup merge of #35839 - jonathandturner:error_touchup, r=Aatch
Wording fixes in error messages

This PR is largely wording fixes to existing PRs that I found going back through the ones that have already been updated.  Sometimes seeing the message in context made me think "oh there's a better wording!"

There's one additional fix.  This will also prevent the secondary underlining of derive call (since they look like macros to the system in the way I was using):

```
error[E0184]: the trait `Copy` may not be implemented for this type; the type has a destructor
  --> src/test/compile-fail/E0184.rs:11:10
   |
11 | #[derive(Copy)] //~ ERROR E0184
   |          ^^^^
   |          |
   |          in this macro invocation
```

Is now just:

```
error[E0184]: the trait `Copy` may not be implemented for this type; the type has a destructor
  --> src/test/compile-fail/E0184.rs:11:10
   |
11 | #[derive(Copy)] //~ ERROR E0184
   |          ^^^^
```
2016-08-20 07:09:37 -07:00
..
Cargo.toml Address comments and fix travis warning 2016-06-23 08:07:35 -04:00
emitter.rs wording fixes in error messages 2016-08-19 16:05:37 -07:00
lib.rs Auto merge of #33922 - estebank:doc-comment, r=alexcrichton 2016-08-19 18:14:53 -07:00
registry.rs Move errors from libsyntax to its own crate 2016-06-23 08:07:35 -04:00
snippet.rs Turn on new errors, json mode. Remove duplicate unicode test 2016-08-07 07:46:49 -07:00
styled_buffer.rs Add fix for tabs. Move error unit tests->ui tests 2016-07-14 07:57:46 -04:00