diff options
author | Adam Bard <github@adambard.com> | 2013-07-07 23:32:20 -0700 |
---|---|---|
committer | Adam Bard <github@adambard.com> | 2013-07-07 23:32:20 -0700 |
commit | f698fb6fbbb3d79f54e863eeaded108fcfc084ee (patch) | |
tree | 1271b7c271474bbff23b3d88489b7324bddd3cc6 /ruby.html.markdown | |
parent | cbcf45743a3354ab5a41522f75d55eb200b29670 (diff) | |
parent | d1f9b74644392bf6be6c4f8c96b990dfe435f51a (diff) |
Merge pull request #110 from noahlz/master
Minor fixes to ruby.html
Diffstat (limited to 'ruby.html.markdown')
-rw-r--r-- | ruby.html.markdown | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/ruby.html.markdown b/ruby.html.markdown index a277667b..6e618861 100644 --- a/ruby.html.markdown +++ b/ruby.html.markdown @@ -216,7 +216,9 @@ when 'D' puts "Scraping through" when 'F' puts "You failed!" - +else + puts "Alternative grading system, eh?" +end # Functions @@ -283,7 +285,7 @@ class Human end # A class method uses self to distinguish from instance methods. - $ It can only be called on the class, not an instance. + # It can only be called on the class, not an instance. def self.say(msg) puts "#{msg}" end |