From d797490936c3e32c976427a5faf8c80c6c66ffe5 Mon Sep 17 00:00:00 2001 From: Mingye Wang Date: Sun, 4 Oct 2015 01:53:58 -0400 Subject: [PATCH] Updated SC1035 (markdown) --- SC1035.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SC1035.md b/SC1035.md index a309309..3806ed1 100644 --- a/SC1035.md +++ b/SC1035.md @@ -8,7 +8,7 @@ if ![-z foo ]; then true; fi # if command `[-z' w/ args `foo', `]' fails.. ### Correct code: ```sh -if ! [ -z foo ]; then true; fi # if command `[' w/ args `-z'. `foo', `]' fails.. +if ! [ -z foo ]; then true; fi # if command `[' w/ args `-z', `foo', `]' fails.. ``` ### Rationale: