From 35a4319b6bf195b6c798429452a08a84be142f76 Mon Sep 17 00:00:00 2001 From: orthographic-pedant Date: Sun, 27 Sep 2015 22:27:30 -0400 Subject: [PATCH] Fixed typographical error, changed Buddist to Buddhist in README. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ae5d2b0e..04898adb 100644 --- a/README.md +++ b/README.md @@ -145,7 +145,7 @@ Let's expand this example out to be multifacted, albeit somewhat contrived: val status = if (religion == "Pentecostalist") "Beer forbidden" else if (age < 18) "Underage" else "Beer for you" ``` -Now we would get 100% code coverage for passing in the values ("Buddist", 34). +Now we would get 100% code coverage for passing in the values ("Buddhist", 34). That's why in scoverage we focus on statement coverage, and don't even include line coverage as a metric. This is a paradigm shift that we hope will take hold.