diff options
author | zzak <zzak@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2013-07-18 13:50:32 +0000 |
---|---|---|
committer | zzak <zzak@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2013-07-18 13:50:32 +0000 |
commit | c366a99cc539d9a963cbaac8040e988699609026 (patch) | |
tree | 35ba1d33bd451a5cb48ddb7f3da88855d1ac724b /lib/irb.rb | |
parent | 2314c1bf476dbef2bd5904d262410dff230e1661 (diff) | |
download | ruby-c366a99cc539d9a963cbaac8040e988699609026.tar.gz |
* lib/cgi.rb: [DOC] Capitalize "Ruby" in documentation [Fixes GH-341]
Patch by Dave Worth https://github.com/ruby/ruby/pull/341
* lib/webrick.rb: ditto
* lib/scanf.rb: ditto
* lib/xmlrpc/config.rb: ditto
* lib/resolv.rb: ditto
* lib/e2mmap.rb: ditto
* lib/fileutils.rb: ditto
* lib/mkmf.rb: ditto
* lib/cgi/session.rb: ditto
* lib/yaml.rb: ditto
* lib/erb.rb: ditto
* lib/irb.rb: ditto
* lib/tracer.rb: ditto
* lib/net/http.rb: ditto
* ext/syslog/lib/syslog/logger.rb: ditto
* sample/pty/expect_sample.rb: ditto
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@42045 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/irb.rb')
-rw-r--r-- | lib/irb.rb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/irb.rb b/lib/irb.rb index 3f54849cba..20390d2205 100644 --- a/lib/irb.rb +++ b/lib/irb.rb @@ -21,16 +21,16 @@ require "irb/locale" STDOUT.sync = true -# IRB stands for "interactive ruby" and is a tool to interactively execute ruby +# IRB stands for "interactive Ruby" and is a tool to interactively execute Ruby # expressions read from the standard input. # # The +irb+ command from your shell will start the interpreter. # # == Usage # -# Use of irb is easy if you know ruby. +# Use of irb is easy if you know Ruby. # -# When executing irb, prompts are displayed as follows. Then, enter the ruby +# When executing irb, prompts are displayed as follows. Then, enter the Ruby # expression. An input is executed when it is syntactically complete. # # $ irb @@ -221,7 +221,7 @@ STDOUT.sync = true # == Restrictions # # Because irb evaluates input immediately after it is syntactically complete, -# the results may be slightly different than directly using ruby. +# the results may be slightly different than directly using Ruby. # # == IRB Sessions # |