mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-28 22:34:45 +00:00
fix extra ampersands
This commit is contained in:
parent
b6116eeb98
commit
899cbeabd7
79 changed files with 372 additions and 376 deletions
|
@ -252,7 +252,7 @@ fn underscore_expression<'a>() -> impl Parser<'a, Expr<'a>, EExpr<'a>> {
|
|||
|
||||
match output {
|
||||
Some(name) => Ok((MadeProgress, Expr::Underscore(name), final_state)),
|
||||
None => Ok((MadeProgress, Expr::Underscore(&""), final_state)),
|
||||
None => Ok((MadeProgress, Expr::Underscore(""), final_state)),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue