Skip to content

Commit f084203

Browse files
brsongraydon
authored andcommitted
Fix typo in expr_recv parsing
1 parent 644d8b9 commit f084203

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/comp/front/parser.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1123,7 +1123,7 @@ impure fn parse_assign_expr(parser p) -> @ast.expr {
11231123
p.bump();
11241124
auto rhs = parse_expr(p);
11251125
ret @spanned(lo, rhs.span,
1126-
ast.expr_send(lhs, rhs, ast.ann_none));
1126+
ast.expr_recv(lhs, rhs, ast.ann_none));
11271127
}
11281128
case (_) { /* fall through */ }
11291129
}

0 commit comments

Comments
 (0)