Skip to content

Commit

Permalink
Merge pull request #2479 from bcjordan/patch-4
Browse files Browse the repository at this point in the history
Update comment, add missing semicolon [ci skip]
  • Loading branch information
nightwing committed May 6, 2015
2 parents 46f76b4 + ef4537a commit d2dc26f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/ace/edit_session.js
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ var EditSession = function(text, mode) {
this.$foldData = [];
this.$foldData.toString = function() {
return this.join("\n");
}
};
this.on("changeFold", this.onChangeFold.bind(this));
this.$onChange = this.onChange.bind(this);

Expand Down Expand Up @@ -679,10 +679,10 @@ var EditSession = function(text, mode) {
};

/**
* Returns an array containing the IDs of all the markers, either front or back.
* Returns an object containing all of the markers, either front or back.
* @param {Boolean} inFront If `true`, indicates you only want front markers; `false` indicates only back markers
*
* @returns {Array}
* @returns {Object}
**/
this.getMarkers = function(inFront) {
return inFront ? this.$frontMarkers : this.$backMarkers;
Expand Down

0 comments on commit d2dc26f

Please sign in to comment.