From e43ac14ddc5f41216c3ed5739e6c6c99d5ee6aaf Mon Sep 17 00:00:00 2001 From: Turiok Date: Sun, 16 Feb 2025 18:44:57 +0100 Subject: [PATCH] Uniform removal rules in text --- SC1000.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SC1000.md b/SC1000.md index f46034d..bde8efc 100644 --- a/SC1000.md +++ b/SC1000.md @@ -1,4 +1,5 @@ # `$` is not used specially and should therefore be escaped. +_Note removed in [v0.3.3 - 2014-05-29](https://github.com/koalaman/shellcheck/blob/2e5c56b27034492134be1538c1e1e6a533ca791a/CHANGELOG.md#removed-1)_ ### Problematic code: @@ -20,4 +21,3 @@ echo "\$" To avoid relying on strange and shell-specific behavior, any `$` intended to be literal should be escaped with a backslash. -Removed in [v0.3.3 - 2014-05-29](https://github.com/koalaman/shellcheck/blob/2e5c56b27034492134be1538c1e1e6a533ca791a/CHANGELOG.md#removed-1) \ No newline at end of file