From be08db0c0e4b990a72248753cd18161fbe715951 Mon Sep 17 00:00:00 2001 From: koalaman Date: Thu, 29 Dec 2016 14:58:18 -0800 Subject: [PATCH] Updated SC2195 (markdown) --- SC2195.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SC2195.md b/SC2195.md index 92e8d0f..d18fe69 100644 --- a/SC2195.md +++ b/SC2195.md @@ -19,7 +19,7 @@ esac ShellCheck has detected that one of the patterns in a `case` statement will never match. -Often, this is due to mistaes in the case statement word that results in unintended literal characters. In the problematic code, there's a trailing space that will prevent the match from ever happening. +Often, this is due to mistakes in the case statement word that results in unintended literal characters. In the problematic code, there's a trailing space that will prevent the match from ever succeeding. For more examples of when this could happen, see [SC2193](https://github.com/koalaman/shellcheck/wiki/SC2193) for the equivalent warning for `[[ .. ]]` statements.