From f958322cef88db3306bfae14104e08179fefc228 Mon Sep 17 00:00:00 2001 From: Nathan Sobo Date: Sun, 2 Feb 2014 19:30:21 +0600 Subject: [PATCH] :lipstick: spelling --- src/row-map.coffee | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/row-map.coffee b/src/row-map.coffee index f2e0b94fc..e51666d68 100644 --- a/src/row-map.coffee +++ b/src/row-map.coffee @@ -23,7 +23,7 @@ class RowMap getRegions: -> @regions.slice() - # Public: Returns and end-row-exclusive range of screen rows corresponding to + # Public: Returns an end-row-exclusive range of screen rows corresponding to # the given buffer row. If the buffer row is soft-wrapped, the range may span # multiple screen rows. Otherwise it will span a single screen row. screenRowRangeForBufferRow: (targetBufferRow) -> @@ -35,7 +35,7 @@ class RowMap screenRows += targetBufferRow - bufferRows [screenRows, screenRows + 1] - # Public: Returns and end-row-exclusive range of buffer rows corresponding to + # Public: Returns an end-row-exclusive range of buffer rows corresponding to # the given screen row. If the screen row is the first line of a folded range # of buffer rows, the range may span multiple buffer rows. Otherwise it will # span a single buffer row.