Skip to content

Commit

Permalink
Change message in Assert
Browse files Browse the repository at this point in the history
  • Loading branch information
FourteenBrush committed Jun 17, 2024
1 parent c51cfe8 commit 3684f30
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ static void indexWithinBounds(int idx, int size, String fmt, Object... placehold

static void isValidIdentifierName(String name) {
if (!Utility.isValidIdentifierName(name)) {
throw new SyntaxException("Invalid identifier name: " + name);
throw new SyntaxException("invalid identifier name: " + name);
}
}
}

0 comments on commit 3684f30

Please sign in to comment.