fmt improvements

This commit is contained in:
Mark Thom
2025-07-08 13:47:08 -07:00
parent e303e5a805
commit b78ccf8f28
3 changed files with 22 additions and 16 deletions

View File

@@ -447,9 +447,9 @@ impl ParserError {
ParserError::InvalidSingleQuotedCharacter(..) => {
atom!("invalid_single_quoted_character")
}
ParserError::InfiniteFloat(..) => {
atom!("infinite_float")
}
ParserError::InfiniteFloat(..) => {
atom!("infinite_float")
}
ParserError::IO(e) if e.kind() == ErrorKind::UnexpectedEof => {
atom!("unexpected_end_of_file")
}