💄 comments

This commit is contained in:
Nathan Sobo
2014-01-20 14:09:25 -07:00
parent d965e9f56c
commit da56c1def5
2 changed files with 2 additions and 2 deletions

View File

@@ -151,7 +151,7 @@ class Gutter extends View
updateAllLines = true
break
# If a change added or removed lines, just rebuild the entire gutter
# Rebuild the entire gutter if a change added or removed lines
if updateAllLines
@lineNumbers[0].innerHTML = @buildLineElementsHtml(startScreenRow, endScreenRow)

View File

@@ -196,7 +196,7 @@ class LanguageMode
@editor.indentationForBufferRow(nextNonEmptyRow) > @editor.indentationForBufferRow(bufferRow)
# Private: Returns a {Boolean} indicating whether the given buffer row starts
# a foldable row range due to a being the start of a multi-line comment.
# a foldable row range due to being the start of a multi-line comment.
isFoldableCommentAtBufferRow: (bufferRow) ->
@isLineCommentedAtBufferRow(bufferRow) and
@isLineCommentedAtBufferRow(bufferRow + 1) and