From 81d4d642c6acaea3d710f6ae80265468e8a942aa Mon Sep 17 00:00:00 2001 From: danyaPostfactum Date: Fri, 6 Apr 2012 16:04:34 +1000 Subject: [PATCH] remove trailing commas --- lib/ace/mode/php_highlight_rules.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/ace/mode/php_highlight_rules.js b/lib/ace/mode/php_highlight_rules.js index 846cfbab..d2a76f5c 100644 --- a/lib/ace/mode/php_highlight_rules.js +++ b/lib/ace/mode/php_highlight_rules.js @@ -1046,7 +1046,7 @@ var PhpHighlightRules = function() { }, { token : "string", regex : '[^"]+' - }, + } ], "qstring" : [ { @@ -1094,7 +1094,7 @@ var PhpHighlightRules = function() { next : "htmltag" }, { token : "meta.tag", - regex : ">", + regex : ">" }, { token : 'text', regex : "(?:media|type|href)" @@ -1104,7 +1104,7 @@ var PhpHighlightRules = function() { }, { token : "paren.lparen", regex : "\{", - next : "cssdeclaration", + next : "cssdeclaration" }, { token : "keyword", regex : "#[A-Za-z0-9\-\_\.]+" @@ -1146,7 +1146,7 @@ var PhpHighlightRules = function() { regex : ";", next : "cssdeclaration" } - ], + ] }; this.embedRules(DocCommentHighlightRules, "doc-",