From 3faecb5988893dd7180b14db3ea093beb938b42b Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Fri, 20 Jun 2014 13:57:50 -0700 Subject: [PATCH] :memo: Correct broken references --- src/editor.coffee | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/editor.coffee b/src/editor.coffee index 4f9161557..0703ae6ae 100644 --- a/src/editor.coffee +++ b/src/editor.coffee @@ -1074,11 +1074,11 @@ class Editor extends Model # Public: Get all the decorations within a screen row range. # - # startScreenRow - the {int} beginning screen row - # endScreenRow - the {int} end screen row (inclusive) + # startScreenRow - the {Number} beginning screen row + # endScreenRow - the {Number} end screen row (inclusive) # # Returns an {Object} of decorations in the form `{1: [{type: 'gutter', class: 'someclass'}], 2: ...}` - # where the keys are markerIds, and the values are an array of {Decoration} objects attached to the marker. + # where the keys are markerIds, and the values are an array of decoration objects attached to the marker. # Returns an empty object when no decorations are found decorationsForScreenRowRange: (startScreenRow, endScreenRow) -> @displayBuffer.decorationsForScreenRowRange(startScreenRow, endScreenRow)