Rename ParenthesizedArgData to ParenthesisedArgs

This commit is contained in:
varkor
2018-06-17 16:04:10 +01:00
parent 95ce05c586
commit 21136b8ab4
4 changed files with 13 additions and 13 deletions

View File

@@ -9,7 +9,7 @@
// except according to those terms.
use rustc_target::spec::abi::{self, Abi};
use ast::{AngleBracketedArgs, ParenthesizedArgData, AttrStyle, BareFnTy};
use ast::{AngleBracketedArgs, ParenthesisedArgs, AttrStyle, BareFnTy};
use ast::{GenericBound, TraitBoundModifier};
use ast::Unsafety;
use ast::{Mod, AnonConst, Arg, Arm, Attribute, BindingMode, TraitItemKind};
@@ -1988,7 +1988,7 @@ impl<'a> Parser<'a> {
None
};
let span = lo.to(self.prev_span);
ParenthesizedArgData { inputs, output, span }.into()
ParenthesisedArgs { inputs, output, span }.into()
};
PathSegment { ident, args }