Fixed typo
authorDaniel Parker <danpker@gmail.com>
Tue, 21 Sep 2010 16:41:09 +0000 (17:41 +0100)
committerDaniel Parker <danpker@gmail.com>
Tue, 21 Sep 2010 16:41:09 +0000 (17:41 +0100)
koans/about_symbols.rb
src/about_symbols.rb

index 978a0e0..6e45f16 100644 (file)
@@ -47,7 +47,7 @@ class AboutSymbols < EdgeCase::Koan
     assert_equal __, string.to_sym
   end
 
-  def test_symbols_with_spaces_can_by_built
+  def test_symbols_with_spaces_can_be_built
     symbol = :"cats and dogs"
 
     assert_equal symbol, __.to_sym
index 65cd449..1b01168 100644 (file)
@@ -47,7 +47,7 @@ class AboutSymbols < EdgeCase::Koan
     assert_equal __(:catsAndDogs), string.to_sym
   end
 
-  def test_symbols_with_spaces_can_by_built
+  def test_symbols_with_spaces_can_be_built
     symbol = :"cats and dogs"
 
     assert_equal symbol, __("cats and dogs").to_sym