File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -596,13 +596,13 @@ Translations of the guide are available in the following languages:
596596 end
597597
598598 # note that elem is accessible outside of the for loop
599- elem #=> 3
599+ elem # => 3
600600
601601 # good
602602 arr.each { |elem| puts elem }
603603
604604 # elem is not accessible outside each' s block
605- elem # => NameError: undefined local variable or method ` elem'
605+ elem # => NameError: undefined local variable or method ` elem'
606606 ```
607607
608608* Never use `then` for multi-line `if/unless`.
@@ -2665,7 +2665,7 @@ Translations of the guide are available in the following languages:
26652665 | other_method
26662666 |end
26672667 END
2668- #=> " def test\n some_method\n other_method\n end\n "
2668+ # => " def test\n some_method\n other_method\n end\n "
26692669 ` ` `
26702670
26712671# # Regular Expressions
You can’t perform that action at this time.
0 commit comments