Merge pull request #38 from bowsersenior/master.

Just some typo fixes
This commit is contained in:
Joe O'Brien
2011-04-30 10:46:31 -07:00
3 changed files with 3 additions and 3 deletions

View File

@@ -67,7 +67,7 @@ class AboutConstants < EdgeCase::Koan
end
# QUESTION: Which has precedence: The constant in the lexical scope,
# or the constant from the inheritance heirarachy?
# or the constant from the inheritance hierarchy?
# ------------------------------------------------------------------

View File

@@ -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")

View File

@@ -84,7 +84,7 @@ class AboutSymbols < EdgeCase::Koan
# interesting string operations are available on symbols.
def test_symbols_cannot_be_concatenated
# Exceptions will be pondered further father down the path
# Exceptions will be pondered further farther down the path
assert_raise(___) do
:cats + :dogs
end