From f040e9688920f624dcbacff1c4580a1447264645 Mon Sep 17 00:00:00 2001 From: Brandon Liu Date: Sun, 18 Dec 2011 22:32:14 -0800 Subject: [PATCH] Fix typo in memoizing Result#covered_strength --- lib/simplecov/result.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/simplecov/result.rb b/lib/simplecov/result.rb index 0c48a6ec..9a126cf0 100644 --- a/lib/simplecov/result.rb +++ b/lib/simplecov/result.rb @@ -44,7 +44,7 @@ def covered_percent # The multiple of coverage for this result def covered_strength - return @covered_strength if @convered_strength + return @covered_strength if @covered_strength m = 0 @files.each do |file| original_result[file.filename].each do |line_result|