Skip to content

Commit 5d1cf2a

Browse files
committed
Out-of-order-code typo. Snapshot again.
1 parent 8fd5802 commit 5d1cf2a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/comp/syntax/parse/parser.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -910,8 +910,8 @@ fn parse_bottom_expr(p: parser) -> @ast::expr {
910910
ex = ast::expr_fail(some(e));
911911
} else { ex = ast::expr_fail(none); }
912912
} else if eat_word(p, "log_full") {
913-
let e = parse_expr(p);
914913
let lvl = parse_expr(p);
914+
let e = parse_expr(p);
915915
ex = ast::expr_log(2, lvl, e);
916916
hi = e.span.hi;
917917
} else if eat_word(p, "log") {

0 commit comments

Comments
 (0)