Skip to content

Commit 21cbc31

Browse files
committed
Make check & Tidy
1 parent 2985b8e commit 21cbc31

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

src/libsyntax/parse/parser.rs

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -333,11 +333,10 @@ impl Parser {
333333
let is_static = p.parse_staticness();
334334
let static_sty = spanned(lo, p.span.hi, sty_static);
335335

336-
let vis = p.parse_visibility();
336+
let vis = p.parse_visibility();
337337
let pur = p.parse_fn_purity();
338338
// NB: at the moment, trait methods are public by default; this
339339
// could change.
340-
341340
let ident = p.parse_method_name();
342341

343342
let tps = p.parse_ty_params();
@@ -2535,8 +2534,8 @@ impl Parser {
25352534

25362535
let is_static = self.parse_staticness();
25372536
let static_sty = spanned(lo, self.span.hi, sty_static);
2538-
2539-
let visa = self.parse_visibility();
2537+
2538+
let visa = self.parse_visibility();
25402539
let pur = self.parse_fn_purity();
25412540
let ident = self.parse_method_name();
25422541
let tps = self.parse_ty_params();

0 commit comments

Comments
 (0)