diff options
| author | Brian Anderson <banderson@mozilla.com> | 2014-07-01 10:46:29 -0700 |
|---|---|---|
| committer | Brian Anderson <banderson@mozilla.com> | 2014-07-01 10:46:31 -0700 |
| commit | d89577b5a2fa2254cc8738ac2953a6479164f5cc (patch) | |
| tree | 1dcbcf65fb37cb80cc109c25f4ea59f5c514393e | |
| parent | 14c0b3ab42a8f963b5e766605f31028e30cd9c0a (diff) | |
| download | rust-d89577b5a2fa2254cc8738ac2953a6479164f5cc.tar.gz rust-d89577b5a2fa2254cc8738ac2953a6479164f5cc.zip | |
doc: Clarify that an error is a compiler error
This was asked on HN, and it's easy to clarify.
| -rw-r--r-- | src/doc/intro.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/intro.md b/src/doc/intro.md index 10fd39c841b..e8928cb5505 100644 --- a/src/doc/intro.md +++ b/src/doc/intro.md @@ -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' |
