From eadb3cf98cfd829b3fdd66a54848df7645bf6e8c Mon Sep 17 00:00:00 2001 From: Garen Torikian Date: Wed, 1 May 2013 16:25:49 -0700 Subject: [PATCH] Update fold --- src/app/fold.coffee | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/fold.coffee b/src/app/fold.coffee index ea6b2d5d9..cdc7c4bc2 100644 --- a/src/app/fold.coffee +++ b/src/app/fold.coffee @@ -24,7 +24,7 @@ class Fold inspect: -> "Fold(#{@startRow}, #{@endRow})" - # Public: Retrieves the buffer row range that a fold occupies. + # Retrieves the buffer row range that a fold occupies. # # includeNewline - A {Boolean} which, if `true`, includes the trailing newline # @@ -37,7 +37,7 @@ class Fold new Range([@startRow, 0], end) - # Public: Retrieves the number of buffer rows a fold occupies. + # Retrieves the number of buffer rows a fold occupies. # # Returns a {Number}. getBufferRowCount: -> @@ -57,7 +57,7 @@ class Fold @displayBuffer.unregisterFold(oldStartRow, this) @displayBuffer.registerFold(this) - # Public: Identifies if a {Range} occurs within a fold. + # Identifies if a {Range} occurs within a fold. # # range - A {Range} to check # @@ -65,7 +65,7 @@ class Fold isContainedByRange: (range) -> range.start.row <= @startRow and @endRow <= range.end.row - # Public: Identifies if a fold is nested within a fold. + # Identifies if a fold is nested within a fold. # # fold - A {Fold} to check #