Skip to content

Commit aecfbdd

Browse files
committed
Merge pull request railsbridge#540 from dwvisser/patch-1
Fixed word == nil comparison example
2 parents 53304d4 + 5cd15b0 commit aecfbdd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sites/en/ruby/nil.step

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ word.nil?
6969
word = nil
7070
word.nil?
7171
# Remember, two equals signs asks if something is equal
72-
word == nil?
72+
word == nil
7373
IRB
7474

7575
message "What's going on here?"

0 commit comments

Comments
 (0)