From aec7db80d8d0c8b76a1bfdb6d4c7571352bee9d2 Mon Sep 17 00:00:00 2001 From: nightwing Date: Wed, 10 Sep 2014 17:15:33 +0400 Subject: [PATCH] fix more typos --- lib/ace/ext/error_marker.js | 6 +++--- lib/ace/selection.js | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) 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 **/