From f17cb56fa8664c129b497ce86c22a922a6d64d12 Mon Sep 17 00:00:00 2001 From: Prayag Verma Date: Fri, 19 Feb 2016 13:02:55 +0530 Subject: [PATCH] Fix a typo Remove extra `the` --- ignoring-code-for-coverage.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ignoring-code-for-coverage.md b/ignoring-code-for-coverage.md index fa750a0a..86b78eea 100644 --- a/ignoring-code-for-coverage.md +++ b/ignoring-code-for-coverage.md @@ -15,7 +15,7 @@ ignoring whichever path was required to be ignored. 4. For all other cases, the Swiss army knife `/* istanbul ignore next */` may be used which skips the "next thing" in the source code 5. The "next" thing may be, among other things: - * A JS statement (including assignments, ifs, loops, switches, functions) in which case all of the the statement is + * A JS statement (including assignments, ifs, loops, switches, functions) in which case all of the statement is ignored for all forms of coverage. * A switch case statement, in which case the particular case is ignored for branch coverage and its contents ignored for all forms