From 08a615eec3cbb10cfb6973eec465cc09f9e2878a Mon Sep 17 00:00:00 2001 From: Lee Dohm Date: Wed, 29 Apr 2015 18:40:16 -0700 Subject: [PATCH] Fix up docs with Extended tag and rewording --- src/text-editor.coffee | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/text-editor.coffee b/src/text-editor.coffee index 886d628d9..ac7c7d4f2 100644 --- a/src/text-editor.coffee +++ b/src/text-editor.coffee @@ -1057,11 +1057,13 @@ class TextEditor extends Model deleteToBeginningOfWord: -> @mutateSelectedText (selection) -> selection.deleteToBeginningOfWord() - # Similar to above, but deletes back to the previous word boundary + # Extended: Similar to {::deleteToBeginningOfWord}, but deletes only back to the + # previous word boundary. deleteToPreviousWordBoundary: -> @mutateSelectedText (selection) -> selection.deleteToPreviousWordBoundary() - # Similar to above, but deletes up to the next word boundary + # Extended: Similar to {::deleteToEndOfWord}, but deletes only up to the + # next word boundary. deleteToNextWordBoundary: -> @mutateSelectedText (selection) -> selection.deleteToNextWordBoundary()