Change line comment start to //

http://doc.rust-lang.org/guide.html#comments
This commit is contained in:
Son 2014-09-30 22:07:53 +08:00
commit 47b9c6c225

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;
});
});