From: Erick Tryzelaar Date: Sat, 12 Feb 2011 18:43:27 +0000 (-0800) Subject: Fix a typo in a method name. X-Git-Url: https://git.eng.unimelb.edu.au/public?p=ruby_koans.git;a=commitdiff_plain;h=ef1536eda07573b87f5fe34c8368f3c92a0ea374 Fix a typo in a method name. --- 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")