From cd4e64a8f8ca40471d0beafb426b6d5294213d03 Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Fri, 27 Sep 2013 15:15:25 -0700 Subject: [PATCH] :memo: correct typos in comments --- src/cursor.coffee | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/cursor.coffee b/src/cursor.coffee index 44081ef52..621a6f1b4 100644 --- a/src/cursor.coffee +++ b/src/cursor.coffee @@ -102,7 +102,7 @@ class Cursor # Public: Returns the visibility of the cursor. isVisible: -> @visible - # Public: Get the RegExp used by the cursor to determin what a "word" is. + # Public: Get the RegExp used by the cursor to determine what a "word" is. # # * options: # + includeNonWordCharacters: @@ -328,7 +328,7 @@ class Cursor beginningOfWordPosition or currentBufferPosition - # Public: Retrieves buffer position of previous word boundry. It might be on + # Public: Retrieves buffer position of previous word boundary. It might be on # the current word, or the previous word. getPreviousWordBoundaryBufferPosition: (options = {}) -> currentBufferPosition = @getBufferPosition() @@ -350,7 +350,7 @@ class Cursor beginningOfWordPosition or currentBufferPosition - # Public: Retrieves buffer position of the next word boundry. It might be on + # Public: Retrieves buffer position of the next word boundary. It might be on # the current word, or the previous word. getMoveNextWordBoundaryBufferPosition: (options = {}) -> currentBufferPosition = @getBufferPosition()