From 70eae5b30619d211a774e9ebabe721c7e00ddd5b Mon Sep 17 00:00:00 2001 From: Jeff Casimir Date: Wed, 12 Jan 2011 14:12:15 -0500 Subject: [PATCH] Fix minor typo in method name: strings ARE unique objects --- koans/about_strings.rb | 2 +- src/about_strings.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/koans/about_strings.rb b/koans/about_strings.rb index 509d26c..27ccf72 100644 --- a/koans/about_strings.rb +++ b/koans/about_strings.rb @@ -183,7 +183,7 @@ EOS assert_equal __, words.join(" ") end - def test_strings_are_not_unique_objects + def test_strings_are_unique_objects a = "a string" b = "a string" diff --git a/src/about_strings.rb b/src/about_strings.rb index deba2c8..65738fc 100644 --- a/src/about_strings.rb +++ b/src/about_strings.rb @@ -183,7 +183,7 @@ EOS assert_equal __("Now is the time"), words.join(" ") end - def test_strings_are_not_unique_objects + def test_strings_are_unique_objects a = "a string" b = "a string"