summaryrefslogtreecommitdiff
path: root/lib/reline/history.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/reline/history.rb')
-rw-r--r--lib/reline/history.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/reline/history.rb b/lib/reline/history.rb
index 7a1ed6b90b..3f3b65fea6 100644
--- a/lib/reline/history.rb
+++ b/lib/reline/history.rb
@@ -62,7 +62,7 @@ class Reline::History < Array
private def check_index(index)
index += size if index < 0
if index < -2147483648 or 2147483647 < index
- raise RangeError.new("integer #{index} too big to convert to `int'")
+ raise RangeError.new("integer #{index} too big to convert to 'int'")
end
# If history_size is negative, history size is unlimited.
if @config.history_size.positive?