From 23525081f951c92e4c8ad0b0bfed7a2b03c0531e Mon Sep 17 00:00:00 2001 From: llogiq Date: Wed, 6 May 2015 14:19:02 +0200 Subject: [PATCH] fixed typo from last commit --- src/misc.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/misc.rs b/src/misc.rs index 5059a87bc..8cde5104f 100644 --- a/src/misc.rs +++ b/src/misc.rs @@ -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 } }