Skip to content

Commit

Permalink
Fixing character class
Browse files Browse the repository at this point in the history
  • Loading branch information
LeStarch committed Feb 12, 2025
1 parent 5c196f3 commit 96b2838
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fprime_gds/flask/static/js/json.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class RegExLexer {
// then even number of \ then " (terminating non-escaped ")
["STRING", /^"([^"\\]|(\\[^"\\])|((\\\\)*)|(\\(\\\\)*)")*(?!\\(\\\\)*)"/],
// Floating point tokens
["NUMBER", /^-?\d+(\.\d+)?([eE][+-]?\d+)?/],
["NUMBER", /^-?\d+(\.\d+)?([eE][+\-]?\d+)?/],
// Infinity token
["INFINITY", /^-?Infinity/],
// Null token
Expand Down

0 comments on commit 96b2838

Please sign in to comment.