Fix comments so they match up with actual behavior

This commit is contained in:
Ben Ogle
2013-07-18 17:52:00 -07:00
committed by probablycorey
parent 62e0274ff6
commit 8e92499ebb
2 changed files with 2 additions and 2 deletions

View File

@@ -1146,7 +1146,7 @@ class EditSession
selectToBeginningOfLine: ->
@expandSelectionsBackward (selection) => selection.selectToBeginningOfLine()
# Moves every cursor to the first non-whitespace character of the line.
# Selects to the first non-whitespace character of the line.
selectToFirstCharacterOfLine: ->
@expandSelectionsBackward (selection) => selection.selectToFirstCharacterOfLine()

View File

@@ -198,7 +198,7 @@ class Selection
selectToBeginningOfLine: ->
@modifySelection => @cursor.moveToBeginningOfLine()
# Selects all the text from the current cursor position to the beginning of the line.
# Selects all the text from the current cursor position to the first character of the line.
selectToFirstCharacterOfLine: ->
@modifySelection => @cursor.moveToFirstCharacterOfLine()