From 39d556d66ee08b268ecca9486557bb38e820aaf6 Mon Sep 17 00:00:00 2001 From: Mani Tadayon Date: Tue, 29 Mar 2011 11:11:09 -0700 Subject: [PATCH 1/3] Fix one letter typo in comments --- koans/about_symbols.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koans/about_symbols.rb b/koans/about_symbols.rb index 6133faa..f4a4319 100644 --- a/koans/about_symbols.rb +++ b/koans/about_symbols.rb @@ -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 From 6dc43a1ab08dd1a1701b92ef8e3a78d363cc2e98 Mon Sep 17 00:00:00 2001 From: Mani Tadayon Date: Tue, 29 Mar 2011 15:14:06 -0700 Subject: [PATCH 2/3] Correct spelling: "heirarachy" => "hierarchy" --- koans/about_constants.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koans/about_constants.rb b/koans/about_constants.rb index 0beccdc..006f1c0 100644 --- a/koans/about_constants.rb +++ b/koans/about_constants.rb @@ -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? # ------------------------------------------------------------------ From bb8d835ad4c78a8f4a84055ed7ee6b0e211b59e8 Mon Sep 17 00:00:00 2001 From: Mani Tadayon Date: Tue, 29 Mar 2011 17:11:33 -0700 Subject: [PATCH 3/3] Fix typo in about_modules.rb --- koans/about_modules.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koans/about_modules.rb b/koans/about_modules.rb index cd967a9..8b56b65 100644 --- a/koans/about_modules.rb +++ b/koans/about_modules.rb @@ -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")