From ef1536eda07573b87f5fe34c8368f3c92a0ea374 Mon Sep 17 00:00:00 2001 From: Erick Tryzelaar Date: Sat, 12 Feb 2011 10:43:27 -0800 Subject: [PATCH] Fix a typo in a method name. --- 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 cd967a949..8b56b65c0 100644 --- a/koans/about_modules.rb +++ b/koans/about_modules.rb @@ -42,7 +42,7 @@ def test_normal_methods_are_available_in_the_object 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")