diff --git a/api/selection.html b/api/selection.html index ac070704..4da8f771 100644 --- a/api/selection.html +++ b/api/selection.html @@ -163,7 +163,7 @@

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.

@@ -1778,4 +1778,4 @@
- \ No newline at end of file + diff --git a/lib/ace/ext/error_marker.js b/lib/ace/ext/error_marker.js index 2f5466b0..05d50498 100644 --- a/lib/ace/ext/error_marker.js +++ b/lib/ace/ext/error_marker.js @@ -30,9 +30,9 @@ define(function(require, exports, module) { "use strict"; -var LineWidgets = require("ace/line_widgets").LineWidgets; -var dom = require("ace/lib/dom"); -var Range = require("ace/range").Range; +var LineWidgets = require("../line_widgets").LineWidgets; +var dom = require("../lib/dom"); +var Range = require("../range").Range; function binarySearch(array, needle, comparator) { var first = 0; diff --git a/lib/ace/selection.js b/lib/ace/selection.js index a0abd86d..b712fc6b 100644 --- a/lib/ace/selection.js +++ b/lib/ace/selection.js @@ -39,7 +39,7 @@ var Range = require("./range").Range; /** * 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 **/