Fixed typo

This commit is contained in:
Daniel Parker
2010-09-21 17:41:09 +01:00
parent 18cccf33fb
commit a36c3b7a4d
2 changed files with 2 additions and 2 deletions

View 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

View 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