From 49a7d9a4bdc6390e187572f89dbcd15cb60e091b Mon Sep 17 00:00:00 2001 From: Vidar Holen Date: Sat, 28 Jul 2018 12:01:04 -0700 Subject: [PATCH] Updated Directive (markdown) --- Directive.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Directive.md b/Directive.md index 682f4e2..b5dc297 100644 --- a/Directive.md +++ b/Directive.md @@ -25,7 +25,7 @@ Specify the shell for a script (similar to the shebang, if you for any reason do # shellcheck shell=sh echo foo &> bar -Directives that replace or are immediately after the shebang apply to the entire script. Otherwise, they are scoped to the command that follows it (including compound commands like function definitions, loops and case statements). A directive may only be applied to a complete command, and can not be used immediately preceding an `else` block or `case` branch: +Directives that replace or are immediately after the shebang apply to the entire script. Otherwise, they are scoped to the command that follows it (including compound commands like function definitions, loops and case statements). A directive may only be applied to a complete command, and can not be used immediately preceding an `else` block or individual `case` branch: # Directive VALID here, applies to whole `case`