Skip to content

Commit 4f878b1

Browse files
committed
Merge pull request #337 from bruno-/fix_commented_output
Update a couple inconsistent commented outputs
2 parents 13e2646 + bba0447 commit 4f878b1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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\nend\n"
2668+
# => "def test\n some_method\n other_method\nend\n"
26692669
```
26702670
26712671
## Regular Expressions

0 commit comments

Comments
 (0)