diff options
| author | Nick Hamann <nick@wabbo.org> | 2015-05-21 01:17:50 -0500 |
|---|---|---|
| committer | Nick Hamann <nick@wabbo.org> | 2015-05-26 15:12:52 -0500 |
| commit | d8d4a6a842d0cd323e5eddff8ec1cbfcc66ac091 (patch) | |
| tree | aa42e602e3672269cb2315b2cf3d1e7544806393 /src/libsyntax/parse/parser.rs | |
| parent | efb5a85e59c07075bf39969ff4dc6390f49a8794 (diff) | |
| download | rust-d8d4a6a842d0cd323e5eddff8ec1cbfcc66ac091.tar.gz rust-d8d4a6a842d0cd323e5eddff8ec1cbfcc66ac091.zip | |
Fix typo.
Diffstat (limited to 'src/libsyntax/parse/parser.rs')
| -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 eb6420165da..539d594cb8b 100644 --- a/src/libsyntax/parse/parser.rs +++ b/src/libsyntax/parse/parser.rs @@ -4564,7 +4564,7 @@ impl<'a> Parser<'a> { if try!(self.eat(&token::DotDot) ){ if generics.is_parameterized() { self.span_err(impl_span, "default trait implementations are not \ - allowed to have genercis"); + allowed to have generics"); } try!(self.expect(&token::OpenDelim(token::Brace))); |
