fix more typos

This commit is contained in:
nightwing 2014-09-10 17:15:33 +04:00
commit aec7db80d8
2 changed files with 4 additions and 4 deletions

View file

@ -30,9 +30,9 @@
define(function(require, exports, module) { define(function(require, exports, module) {
"use strict"; "use strict";
var LineWidgets = require("ace/line_widgets").LineWidgets; var LineWidgets = require("../line_widgets").LineWidgets;
var dom = require("ace/lib/dom"); var dom = require("../lib/dom");
var Range = require("ace/range").Range; var Range = require("../range").Range;
function binarySearch(array, needle, comparator) { function binarySearch(array, needle, comparator) {
var first = 0; var first = 0;

View file

@ -39,7 +39,7 @@ var Range = require("./range").Range;
/** /**
* Contains the cursor position and the text selection of an edit session. * Contains the cursor position and the text selection of an edit session.
* *
* The row/columns used in the selection are in document coordinates representing ths coordinates as thez appear in the document before applying soft wrap and folding. * The row/columns used in the selection are in document coordinates representing the coordinates as they appear in the document before applying soft wrap and folding.
* @class Selection * @class Selection
**/ **/