From e114456948de7b6b8dce11b95d5ed1af6b6d4bc8 Mon Sep 17 00:00:00 2001 From: Shaun McCance Date: Mon, 25 Apr 2016 23:14:00 -0400 Subject: [PATCH] Remove spurious backtick --- Directive.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Directive.md b/Directive.md index ec45d67..787a9e3 100644 --- a/Directive.md +++ b/Directive.md @@ -20,7 +20,7 @@ Supported directives are `disable` to disable warnings: # shellcheck shell=sh echo foo &> bar -Directives instead of or immediately after the shebang apply to the entire script. Otherwise, they are scoped to the structure that follows it (such as all branches of a `case` statement`, or an entire function). +Directives instead of or immediately after the shebang apply to the entire script. Otherwise, they are scoped to the structure that follows it (such as all branches of a `case` statement, or an entire function). There is no support for scoping a directive to the first structure of the script. In these cases, use a dummy command `true` or `:` and then add directives, such as