From 8b996b0a091085c860de88c848ef5337493bb938 Mon Sep 17 00:00:00 2001 From: Chris Schmich Date: Tue, 9 Sep 2014 20:29:44 -0500 Subject: [PATCH 1/3] Fix typo. --- api/selection.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api/selection.html b/api/selection.html index ac070704..671041a5 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 ths coordinates as they appear in the document before applying soft wrap and folding.

@@ -1778,4 +1778,4 @@
- \ No newline at end of file + From 91db934fe6856e123f2b472e2818cc853e832e8e Mon Sep 17 00:00:00 2001 From: Chris Schmich Date: Tue, 9 Sep 2014 20:33:09 -0500 Subject: [PATCH 2/3] Fixing another typo. --- api/selection.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/selection.html b/api/selection.html index 671041a5..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 they 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.

From aec7db80d8d0c8b76a1bfdb6d4c7571352bee9d2 Mon Sep 17 00:00:00 2001 From: nightwing Date: Wed, 10 Sep 2014 17:15:33 +0400 Subject: [PATCH 3/3] 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 **/