Skip to content

Commit

Permalink
fix: parse Arguments should expect ) not } (#4058)
Browse files Browse the repository at this point in the history
  • Loading branch information
zzzdong authored Dec 6, 2024
1 parent c2e8d1f commit c609fbc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ where
_ => {
if !args.is_empty() {
return Err(Error::expected(
[",".to_owned(), "}".to_owned()],
[",".to_owned(), ")".to_owned()],
next_token.to_string(interner),
next_token.span(),
"argument list",
Expand Down

0 comments on commit c609fbc

Please sign in to comment.