diff --git a/koans/about_scoring_project.rb b/koans/about_scoring_project.rb index b5ac7fd..fcd4206 100644 --- a/koans/about_scoring_project.rb +++ b/koans/about_scoring_project.rb @@ -25,7 +25,7 @@ require 'edgecase' # score([3,4,5,3,3]) => 350 points # score([1,5,1,2,4]) => 250 points # -# More scoing examples are given in the tests below: +# More scoring examples are given in the tests below: # # Your goal is to write the score method. @@ -67,7 +67,7 @@ class AboutScoringAssignment < EdgeCase::Koan end def test_score_of_mixed_is_sum - assert_equal 50, score([2,5,2,2,3]) + assert_equal 250, score([2,5,2,2,3]) assert_equal 550, score([5,5,5,5]) end