From c09b64303eda6ced6e28c32c1bddbdd971aeb019 Mon Sep 17 00:00:00 2001 From: Denis Sokolov Date: Sun, 12 Jan 2020 21:12:31 +0200 Subject: [PATCH] Fix getFileLines comment, fixup 8338e582 --- src/Whoops/Exception/Frame.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Whoops/Exception/Frame.php b/src/Whoops/Exception/Frame.php index f63e2a4..8403209 100644 --- a/src/Whoops/Exception/Frame.php +++ b/src/Whoops/Exception/Frame.php @@ -191,7 +191,7 @@ class Frame implements Serializable * $frame->getFileLines(); // => array( 0 => ' '...', ...) * @example * Get one line for this file, starting at line 10 (zero-indexed, remember!) - * $frame->getFileLines(9, 1); // array( 10 => '...', 11 => '...') + * $frame->getFileLines(9, 1); // array( 9 => '...' ) * * @throws InvalidArgumentException if $length is less than or equal to 0 * @param int $start