doc: Clarify that an error is a compiler error

This was asked on HN, and it's easy to clarify.
This commit is contained in:
Brian Anderson 2014-07-01 10:46:29 -07:00
parent 14c0b3ab42
commit d89577b5a2
1 changed files with 1 additions and 1 deletions

View File

@ -252,7 +252,7 @@ fn main() {
}
```
This will result an error indicating that the value is no longer in scope:
The compiler will produce an error indicating that the value is no longer in scope:
```text
concurrency.rs:12:20: 12:27 error: use of moved value: 'numbers'