summaryrefslogtreecommitdiff
path: root/man
diff options
context:
space:
mode:
authorkazu <kazu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-02-18 12:33:48 +0000
committerkazu <kazu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-02-18 12:33:48 +0000
commitcf87846f16bc1b54d29f7d20a53ad4dab9631af0 (patch)
treefc902e19e32e0795dded5b5006b0e9382b24410b /man
parent49a272d728c2003064182869cfdbca140f3acc81 (diff)
fix output in EXAMPLES [ci skip]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53867 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'man')
-rw-r--r--man/irb.12
1 files changed, 1 insertions, 1 deletions
diff --git a/man/irb.1 b/man/irb.1
index 1f1800d45d..8209120230 100644
--- a/man/irb.1
+++ b/man/irb.1
@@ -143,7 +143,7 @@ Personal irb initialization.
.Dl irb(main):002:0> Ic def t(x)
.Dl irb(main):003:1> Ic x+1
.Dl irb(main):004:1> Ic end
-.Dl => nil
+.Dl => :t
.Dl irb(main):005:0> Ic t(3)
.Dl => 4
.Dl irb(main):006:0> Ic if t(3) == 4