Fix up docs with Extended tag and rewording

This commit is contained in:
Lee Dohm
2015-04-29 18:40:16 -07:00
parent 943897bb7f
commit 08a615eec3

View File

@@ -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()