Skip to content

Commit 12c5447

Browse files
committed
PR 549
Fixed md typo in Further Reading on Booleans step. Removed duplicate link for truthy/falsy. Updated link to ruby docs for FalseClass.
1 parent 63dc27d commit 12c5447

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

sites/en/ruby/booleans.step

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -109,9 +109,8 @@ explanation do
109109
end
110110

111111
further_reading do
112-
message "Some languages offer wiggle room about what evaluates to true or false. Ruby has very little. See [What's Truthy and Falsey in Ruby?](https://gist.github.com/jfarmer/2647362)"
113-
message "[What's Truthy and Falsey in Ruby?](https://gist.github.com/jfarmer/2647362) has a more detailed walkthrough of booleans."
114-
message "Ruby documentation for [true](http://ruby-doc.org/core-2.2.0/TrueClass.html) and [false]](http://ruby-doc.org/core-2.2.0/TrueClass.html)"
112+
message "Some languages offer wiggle room about what evaluates to true or false. Ruby has very little. See [What's Truthy and Falsey in Ruby?](https://gist.github.com/jfarmer/2647362) for a more detailed walkthrough of booleans."
113+
message "Ruby documentation for [true](http://ruby-doc.org/core-2.2.0/TrueClass.html) and [false](http://ruby-doc.org/core-2.2.0/FalseClass.html)"
115114
end
116115

117116
next_step "conditionals"

0 commit comments

Comments
 (0)