fixed typo from last commit

This commit is contained in:
llogiq 2015-05-06 14:19:02 +02:00
parent 7a8de35abc
commit 23525081f9
1 changed files with 1 additions and 1 deletions

View File

@ -193,7 +193,7 @@ impl LintPass for Precedence {
fn is_arith_expr(expr : &Expr) -> bool {
match expr.node {
ExprBinary(Spanned { node: op, ..}, _, _) => is_arith_op(lop),
ExprBinary(Spanned { node: op, ..}, _, _) => is_arith_op(op),
_ => false
}
}