Skip to content

Commit

Permalink
Fix #143
Browse files Browse the repository at this point in the history
  • Loading branch information
travisbrown committed Jan 4, 2019
1 parent 915f0b7 commit e609de1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion parser/src/main/scala/jawn/Parser.scala
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@ abstract class Parser[J] {
case 'n' => (parseNull(i), i + 4)

// invalid
case _ => die(i, "expected json value")
case _ => die(i, "expected json value", 1)
}

/**
Expand Down

0 comments on commit e609de1

Please sign in to comment.