Fix rdoc in 52cfb17086

This commit is contained in:
Nobuyoshi Nakada 2019-04-26 18:53:36 +09:00
parent a429b3601f
commit e804fcb42c
No known key found for this signature in database
GPG Key ID: 4BC7D6DF58D8DF60

View File

@ -750,8 +750,8 @@ class Binding
# #
# Potato.new # Potato.new
# #
# Running +ruby potato.rb+ will open an IRB session where +binding.irb+ is # Running <code>ruby potato.rb</code> will open an IRB session where
# called, and you will see the following: # +binding.irb+ is called, and you will see the following:
# #
# $ ruby potato.rb # $ ruby potato.rb
# #
@ -781,7 +781,7 @@ class Binding
# irb(#<Potato:0x00007feea1916670>):004:0> @cooked = true # irb(#<Potato:0x00007feea1916670>):004:0> @cooked = true
# => true # => true
# #
# You can exit the IRB session with the `exit` command. Note that exiting will # You can exit the IRB session with the +exit+ command. Note that exiting will
# resume execution where +binding.irb+ had paused it, as you can see from the # resume execution where +binding.irb+ had paused it, as you can see from the
# output printed to standard output in this example: # output printed to standard output in this example:
# #