diff options
| author | Marcel Hellwig <mhellwig@mut-group.com> | 2019-01-21 08:09:56 +0100 |
|---|---|---|
| committer | Marcel Hellwig <mhellwig@mut-group.com> | 2019-01-22 09:08:52 +0100 |
| commit | 051835b903181ac0a2e549327de9e8d89cf3d457 (patch) | |
| tree | a83ca9b68754c8b7cd6f7ac064dd9060781d932d /src/libsyntax/parse/parser.rs | |
| parent | 51cc3cdcf060c1bf3e4d45947f7a6bc20f9960f7 (diff) | |
| download | rust-051835b903181ac0a2e549327de9e8d89cf3d457.tar.gz rust-051835b903181ac0a2e549327de9e8d89cf3d457.zip | |
Corrected spelling inconsistency
resolves #57773
Diffstat (limited to 'src/libsyntax/parse/parser.rs')
| -rw-r--r-- | src/libsyntax/parse/parser.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libsyntax/parse/parser.rs b/src/libsyntax/parse/parser.rs index 439eec5b0c4..09ea0995253 100644 --- a/src/libsyntax/parse/parser.rs +++ b/src/libsyntax/parse/parser.rs @@ -1,5 +1,5 @@ use rustc_target::spec::abi::{self, Abi}; -use ast::{AngleBracketedArgs, ParenthesisedArgs, AttrStyle, BareFnTy}; +use ast::{AngleBracketedArgs, ParenthesizedArgs, AttrStyle, BareFnTy}; use ast::{GenericBound, TraitBoundModifier}; use ast::Unsafety; use ast::{Mod, AnonConst, Arg, Arm, Guard, Attribute, BindingMode, TraitItemKind}; @@ -2203,7 +2203,7 @@ impl<'a> Parser<'a> { } else { None }; - ParenthesisedArgs { inputs, output, span }.into() + ParenthesizedArgs { inputs, output, span }.into() }; PathSegment { ident, args, id: ast::DUMMY_NODE_ID } |
