minor grammar nit

This commit is contained in:
Erik Ogan
2010-09-19 16:52:26 -07:00
parent 57f0f4f178
commit 1597b2f912
2 changed files with 2 additions and 2 deletions

View File

@@ -60,7 +60,7 @@ class AboutBlocks < EdgeCase::Koan
# ------------------------------------------------------------------
def test_block_can_effect_variables_in_the_code_where_they_are_created
def test_block_can_affect_variables_in_the_code_where_they_are_created
value = :initial_value
method_with_block { value = :modified_in_a_block }
assert_equal __, value

View File

@@ -60,7 +60,7 @@ class AboutBlocks < EdgeCase::Koan
# ------------------------------------------------------------------
def test_block_can_effect_variables_in_the_code_where_they_are_created
def test_block_can_affect_variables_in_the_code_where_they_are_created
value = :initial_value
method_with_block { value = :modified_in_a_block }
assert_equal __(:modified_in_a_block), value