Fix formatting on comments

This commit is contained in:
Ryan Plant 2016-01-26 11:59:08 +11:00
parent b9c1502cab
commit 236cc1c14c

View File

@ -416,8 +416,8 @@ def foods
['pancake', 'sandwich', 'quesadilla']
end
breakfast, lunch, dinner = foods
breakfast # 'pancake'
dinner # 'quesadilla'
breakfast #=> 'pancake'
dinner #=> 'quesadilla'
# By convention, all methods that return booleans end with a question mark
5.even? # false