Skip to content

Commit

Permalink
Fix unbalanced double quote
Browse files Browse the repository at this point in the history
  • Loading branch information
saulecabrera committed Jun 10, 2024
1 parent 4afb313 commit 7173839
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/javy/src/apis/json.rs
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ fn call_json_parse<'a>(args: Args<'a>, default: Function<'a>) -> Result<Value<'a
match args.len() {
0 => bail!(Exception::throw_syntax(
&this,
"undefined\" is not valid JSON"
"\"undefined\" is not valid JSON"
)),
1 => {
let val = args[0].clone();
Expand Down

0 comments on commit 7173839

Please sign in to comment.