fix detection of doc comments

This commit is contained in:
Fabian Jakobs 2010-11-02 17:06:09 +01:00
commit 3e1eb8d592

View file

@ -41,7 +41,7 @@ oop.inherits(DocCommentHighlightRules, TextHighlightRules);
this.getStartRule = function(start) {
return {
token : "comment.doc", // doc comment
regex : "\\/\\*\\*",
regex : "\\/\\*(?=\\*)",
next: start
};
};