Skip to content

Commit 49a1209

Browse files
committed
Merge pull request ajaxorg#983 from ukyo/patch1
fix typo
2 parents c21a5fe + 6dbfcaa commit 49a1209

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/ace/mode/javascript_highlight_rules.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ var JavaScriptHighlightRules = function() {
7070
var kwBeforeRe = "case|do|else|finally|in|instanceof|return|throw|try|typeof|yield";
7171

7272
// TODO: Unicode escape sequences
73-
var identifierRe = "[a-zA-Z\\$_\u00a1-\uffff][a-zA-Z\d\\$_\u00a1-\uffff]*\\b";
73+
var identifierRe = "[a-zA-Z\\$_\u00a1-\uffff][a-zA-Z\\d\\$_\u00a1-\uffff]*\\b";
7474

7575
var escapedRe = "\\\\(?:x[0-9a-fA-F]{2}|" + // hex
7676
"u[0-9a-fA-F]{4}|" + // unicode

0 commit comments

Comments
 (0)