File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
---
2
- refs/heads/master: 3ae9ca444ce244e2bab660de28a5bf7047aa3813
2
+ refs/heads/master: ed96688be5ae2c9b433cf8b00a207ce21e630562
Original file line number Diff line number Diff line change @@ -595,7 +595,7 @@ impure fn parse_path(parser p, greed g) -> ast.path {
595
595
ret spanned( lo, tys. span , rec ( idents=ids, types=tys. node ) ) ;
596
596
}
597
597
598
- impure fn parse_mutabliity ( parser p) -> ast. mutability {
598
+ impure fn parse_mutability ( parser p) -> ast. mutability {
599
599
if ( p. peek ( ) == token. MUTABLE ) {
600
600
p. bump ( ) ;
601
601
ret ast. mut ;
@@ -604,7 +604,7 @@ impure fn parse_mutabliity(parser p) -> ast.mutability {
604
604
}
605
605
606
606
impure fn parse_field ( parser p) -> ast. field {
607
- auto m = parse_mutabliity ( p) ;
607
+ auto m = parse_mutability ( p) ;
608
608
auto i = parse_ident ( p) ;
609
609
expect ( p, token. EQ ) ;
610
610
auto e = parse_expr ( p) ;
@@ -650,7 +650,7 @@ impure fn parse_bottom_expr(parser p) -> @ast.expr {
650
650
case ( token. TUP ) {
651
651
p. bump ( ) ;
652
652
impure fn parse_elt ( parser p) -> ast . elt {
653
- auto m = parse_mutabliity ( p) ;
653
+ auto m = parse_mutability ( p) ;
654
654
auto e = parse_expr ( p) ;
655
655
ret rec( mut=m, expr=e) ;
656
656
}
You can’t perform that action at this time.
0 commit comments