Skip to content

Commit

Permalink
Fixed misspelling of "multiple" (http://www.pivotaltracker.com/story/…
Browse files Browse the repository at this point in the history
  • Loading branch information
jimweirich committed Jan 3, 2010
1 parent bdc9e2a commit 425fd41
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion koans/about_scoring_project.rb
Expand Up @@ -46,7 +46,7 @@ def test_score_of_a_single_roll_of_1_is_100
assert_equal 100, score([1])
end

def test_score_of_mulitple_1s_and_5s_is_the_sum_of_individual_scores
def test_score_of_multiple_1s_and_5s_is_the_sum_of_individual_scores
assert_equal 300, score([1,5,5,1])
end

Expand Down
2 changes: 1 addition & 1 deletion src/about_scoring_project.rb
Expand Up @@ -67,7 +67,7 @@ def test_score_of_a_single_roll_of_1_is_100
assert_equal 100, score([1])
end

def test_score_of_mulitple_1s_and_5s_is_the_sum_of_individual_scores
def test_score_of_multiple_1s_and_5s_is_the_sum_of_individual_scores
assert_equal 300, score([1,5,5,1])
end

Expand Down

0 comments on commit 425fd41

Please sign in to comment.