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`