From d89577b5a2fa2254cc8738ac2953a6479164f5cc Mon Sep 17 00:00:00 2001 From: Brian Anderson Date: Tue, 1 Jul 2014 10:46:29 -0700 Subject: [PATCH] doc: Clarify that an error is a compiler error This was asked on HN, and it's easy to clarify. --- src/doc/intro.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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'