diff options
author | Stan Lo <[email protected]> | 2023-07-04 16:17:36 +0100 |
---|---|---|
committer | git <[email protected]> | 2023-07-04 15:17:41 +0000 |
commit | f6af5a1128754bdac07b8cf3c41a7397f113a130 (patch) | |
tree | 98d4b528b18544078412c28a234c0f9f1e634f65 /lib/irb.rb | |
parent | 296782ab60e63fe825461a199369c5dd8505c2b7 (diff) |
[ruby/irb] Refactor eval history
(https://github.com/ruby/irb/pull/623)
* Rename `ext/history.rb` to `ext/eval_history.rb`
To confusion with `lib/irb/history.rb`
* Add eval_history tests
* Rename eval_history's History to EvalHistory to avoid confusion
Diffstat (limited to 'lib/irb.rb')
-rw-r--r-- | lib/irb.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/irb.rb b/lib/irb.rb index 64c716fd4c..1f86a0f386 100644 --- a/lib/irb.rb +++ b/lib/irb.rb @@ -154,7 +154,7 @@ require_relative "irb/easter-egg" # # IRB.conf[:EVAL_HISTORY] = <number> # -# See IRB::Context#eval_history= and History class. The history of command +# See IRB::Context#eval_history= and EvalHistory class. The history of command # results is not permanently saved in any file. # # == Customizing the IRB Prompt |