diff options
| -rw-r--r-- | ruby.html.markdown | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/ruby.html.markdown b/ruby.html.markdown index bdad4d06..adf5ce81 100644 --- a/ruby.html.markdown +++ b/ruby.html.markdown @@ -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 | 
