mirror of
https://github.com/atom/atom.git
synced 2026-04-28 03:01:47 -04:00
In documentation strings ,s/Integer/Number/g
This commit is contained in:
@@ -90,10 +90,10 @@ class DisplayBuffer
|
||||
# Public: Given starting and ending screen rows, this returns an array of the
|
||||
# buffer rows corresponding to every screen row in the range
|
||||
#
|
||||
# startRow - The screen row {Integer} to start at
|
||||
# endRow - The screen row {Integer} to end at (default: {.lastScreenRow})
|
||||
# startRow - The screen row {Number} to start at
|
||||
# endRow - The screen row {Number} to end at (default: {.lastScreenRow})
|
||||
#
|
||||
# Returns an {Array} of buffer rows as {Integers}s.
|
||||
# Returns an {Array} of buffer rows as {Numbers}s.
|
||||
bufferRowsForScreenRows: (startRow, endRow) ->
|
||||
@lineMap.bufferRowsForScreenRows(startRow, endRow)
|
||||
|
||||
|
||||
@@ -48,7 +48,7 @@ class LineMap
|
||||
# Public: Given starting and ending screen rows, this returns an array of the
|
||||
# buffer rows corresponding to every screen row in the range
|
||||
#
|
||||
# startRow - The screen row {Integer} to start at
|
||||
# startRow - The screen row {Number} to start at
|
||||
# endRow - The screen row {Integer} to end at (default: {.lastScreenRow})
|
||||
#
|
||||
# Returns an {Array} of buffer rows as {Integers}s.
|
||||
|
||||
Reference in New Issue
Block a user