Merge pull request #38 from bowsersenior/master.
authorJoe O'Brien <joe@theedgecase.com>
Sat, 30 Apr 2011 17:46:31 +0000 (10:46 -0700)
committerJoe O'Brien <joe@theedgecase.com>
Sat, 30 Apr 2011 17:46:31 +0000 (10:46 -0700)
Just some typo fixes

koans/about_constants.rb
koans/about_modules.rb
koans/about_symbols.rb

index 0beccdc..006f1c0 100644 (file)
@@ -67,7 +67,7 @@ class AboutConstants < EdgeCase::Koan
   end
 
   # QUESTION: Which has precedence: The constant in the lexical scope,
-  # or the constant from the inheritance heirarachy?
+  # or the constant from the inheritance hierarchy?
 
   # ------------------------------------------------------------------
 
index cd967a9..8b56b65 100644 (file)
@@ -42,7 +42,7 @@ class AboutModules < EdgeCase::Koan
     assert_equal __, fido.bark
   end
 
-  def test_module_methods_are_also_availble_in_the_object
+  def test_module_methods_are_also_available_in_the_object
     fido = Dog.new
     assert_nothing_raised(Exception) do
       fido.set_name("Rover")
index 6133faa..f4a4319 100644 (file)
@@ -84,7 +84,7 @@ class AboutSymbols < EdgeCase::Koan
   # interesting string operations are available on symbols.
 
   def test_symbols_cannot_be_concatenated
-    # Exceptions will be pondered further father down the path
+    # Exceptions will be pondered further farther down the path
     assert_raise(___) do
       :cats + :dogs
     end