mirror of
https://github.com/aljazceru/turso.git
synced 2025-12-28 05:24:22 +01:00
Makes clippy happy
This commit is contained in:
@@ -1551,7 +1551,7 @@ impl<'a> Parser<'a> {
|
||||
b"false" => {
|
||||
Ok(Box::new(Expr::Literal(Literal::Numeric("0".into()))))
|
||||
}
|
||||
_ => return Ok(Box::new(Expr::Id(Name::Ident(s)))),
|
||||
_ => Ok(Box::new(Expr::Id(Name::Ident(s)))),
|
||||
})
|
||||
}
|
||||
_ => Ok(Box::new(Expr::Id(name))),
|
||||
|
||||
Reference in New Issue
Block a user