diff options
| author | bors <bors@rust-lang.org> | 2014-09-07 09:26:27 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2014-09-07 09:26:27 +0000 |
| commit | ee72e46638f2b2ae92e99df2a7ea92690baa0d07 (patch) | |
| tree | 8cd8e68d9a9184ef641fb7d8cf20e501994d494c /src/libsyntax/parse | |
| parent | 57781c3c30babf85ee7a95f586ef5dcfb30104f8 (diff) | |
| parent | 4755441fd4ef40709a420aa2a829ba629b4abf22 (diff) | |
| download | rust-ee72e46638f2b2ae92e99df2a7ea92690baa0d07.tar.gz rust-ee72e46638f2b2ae92e99df2a7ea92690baa0d07.zip | |
auto merge of #17032 : jamesluke/rust/master, r=alexcrichton
"extern create" -> "extern crate"
Diffstat (limited to 'src/libsyntax/parse')
| -rw-r--r-- | src/libsyntax/parse/parser.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/parse/parser.rs b/src/libsyntax/parse/parser.rs index 545bf85b582..507c9b73557 100644 --- a/src/libsyntax/parse/parser.rs +++ b/src/libsyntax/parse/parser.rs @@ -4779,7 +4779,7 @@ impl<'a> Parser<'a> { let span = self.span; self.span_warn(span, format!("this extern crate syntax is deprecated. \ - Use: extern create \"{}\" as {};", + Use: extern crate \"{}\" as {};", the_ident.as_str(), path.ref0().get() ).as_slice() ); Some(path) |
