aboutsummaryrefslogtreecommitdiffstats
path: root/lib/irb.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/irb.rb')
-rw-r--r--lib/irb.rb10
1 files changed, 0 insertions, 10 deletions
diff --git a/lib/irb.rb b/lib/irb.rb
index 7f3de5dffe..72ebe1bd35 100644
--- a/lib/irb.rb
+++ b/lib/irb.rb
@@ -223,16 +223,6 @@ STDOUT.sync = true
# Because irb evaluates input immediately after it is syntactically complete,
# the results may be slightly different than directly using ruby.
#
-# One of the obvious differences is how irb handles symbols as continuated
-# statements:
-#
-# ruby -e 'p :+' #=> :+
-# irb
-# irb(main):001:0> p :+
-# irb(main):002:0*
-#
-# irb tries to contiue the statement 'p :+' on the next line.
-#
# == IRB Sessions
#
# IRB has a special feature, that allows you to manage many sessions at once.