diff options
author | aycabta <[email protected]> | 2021-09-27 03:13:21 +0900 |
---|---|---|
committer | git <[email protected]> | 2021-09-27 03:23:37 +0900 |
commit | 2ae64bf6b92bc64005830fc8778a56a3a8f44865 (patch) | |
tree | b43386ec0efdd5659f7799c6f1cf32a29190c61a /lib/irb/context.rb | |
parent | 5c0636bda4a2abf71dbb8a4e398f002d5c2079c2 (diff) |
[ruby/irb] Fix sample code in doc
https://github.com/ruby/irb/commit/642adbe968
Diffstat (limited to 'lib/irb/context.rb')
-rw-r--r-- | lib/irb/context.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/irb/context.rb b/lib/irb/context.rb index 3827bda438..b8f88b661f 100644 --- a/lib/irb/context.rb +++ b/lib/irb/context.rb @@ -269,7 +269,7 @@ module IRB # IRB.CurrentContext.echo_on_assignment = false # a = "omg" # IRB.CurrentContext.echo_on_assignment = true - # a = "omg" + # a = "omg" * 10 # #=> omgomgomgomgomgomgomgomgomgomg attr_accessor :echo_on_assignment # Whether a newline is put before multiline output. |