about summary refs log tree commit diff
path: root/src/libsyntax/parse
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2014-09-07 09:26:27 +0000
committerbors <bors@rust-lang.org>2014-09-07 09:26:27 +0000
commitee72e46638f2b2ae92e99df2a7ea92690baa0d07 (patch)
tree8cd8e68d9a9184ef641fb7d8cf20e501994d494c /src/libsyntax/parse
parent57781c3c30babf85ee7a95f586ef5dcfb30104f8 (diff)
parent4755441fd4ef40709a420aa2a829ba629b4abf22 (diff)
downloadrust-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.rs2
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)