Merge pull request #2168 from phungleson/patch-1

Change line comment start to //
This commit is contained in:
Harutyun Amirjanyan 2014-09-30 18:57:10 +04:00
commit 54e022fab2

View file

@ -53,10 +53,10 @@ var Mode = function() {
oop.inherits(Mode, TextMode);
(function() {
this.lineCommentStart = "/\\*";
this.lineCommentStart = "//";
this.blockComment = {start: "/*", end: "*/"};
this.$id = "ace/mode/rust";
}).call(Mode.prototype);
exports.Mode = Mode;
});
});