Skip to content

Commit 47c3ce1

Browse files
committed
Fix lint
1 parent 7ad8868 commit 47c3ce1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ast/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1920,7 +1920,7 @@ impl fmt::Display for Expr {
19201920
}
19211921
Expr::Prior(expr) => write!(f, "PRIOR {expr}"),
19221922
Expr::Lambda(lambda) => write!(f, "{lambda}"),
1923-
Expr::MemberOf(value, array) => write!(f, "{} MEMBER OF({})", value, array),
1923+
Expr::MemberOf(value, array) => write!(f, "{value} MEMBER OF({array})"),
19241924
}
19251925
}
19261926
}

0 commit comments

Comments
 (0)