From 282e096f5eaa81c26816d45468ea8c62babadded Mon Sep 17 00:00:00 2001 From: Andrey Ognevsky Date: Fri, 8 Mar 2013 19:02:06 +0100 Subject: [PATCH] Fixed typo in comment --- lib/pry/history_array.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/pry/history_array.rb b/lib/pry/history_array.rb index 48a101e6..9ffaeea6 100644 --- a/lib/pry/history_array.rb +++ b/lib/pry/history_array.rb @@ -1,6 +1,6 @@ class Pry # A history array is an array to which you can only add elements. Older - # entries are removed progressively, so that the aray never contains more than + # entries are removed progressively, so that the array never contains more than # N elements. # # History arrays are used by Pry to store the output of the last commands.