summaryrefslogtreecommitdiff
path: root/lib/irb.rb
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2019-12-20 12:19:45 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2019-12-20 12:19:45 +0900
commite68999c82c4863d33a6f893661fba1b7538c5671 (patch)
tree97615ccb396e864cbabbfd539251c9e64c309d91 /lib/irb.rb
parente672494cd737b8fea3a186aeb5c2c17d1a18cb96 (diff)
Fixed misspellings
Fixed misspellings reported at [Bug #16437], for default gems.
Diffstat (limited to 'lib/irb.rb')
-rw-r--r--lib/irb.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/irb.rb b/lib/irb.rb
index f6fc9690f2..a907894fe2 100644
--- a/lib/irb.rb
+++ b/lib/irb.rb
@@ -319,7 +319,7 @@ require "irb/version"
# # check if Foo#foo is available
# irb(main):005:0> Foo.instance_methods #=> [:foo, ...]
#
-# # change the active sesssion
+# # change the active session
# irb(main):006:0> fg 2
# # define Foo#bar in the context of Foo
# irb.2(Foo):005:0> def bar