aboutsummaryrefslogtreecommitdiffstats
path: root/lib/irb.rb
diff options
context:
space:
mode:
authorzzak <zzak@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-02-05 15:57:19 +0000
committerzzak <zzak@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-02-05 15:57:19 +0000
commit5b15e5a38fb3963cffb3c795883d6fc141031251 (patch)
treefb1558a56edaba98af779d641cdde53777a24e08 /lib/irb.rb
parent1e32d0fc1f0a86d9aafaa003e2dd28cda66d56c1 (diff)
downloadruby-5b15e5a38fb3963cffb3c795883d6fc141031251.tar.gz
* lib/irb.rb: Remove example from restrictions, it works [Github #246]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@39075 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
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.