From 93b709dc1202eea10fe5c52f925e57c51eeea6d9 Mon Sep 17 00:00:00 2001 From: Mingye Wang Date: Sun, 4 Oct 2015 01:53:14 -0400 Subject: [PATCH] Updated SC1035 (markdown) --- SC1035.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SC1035.md b/SC1035.md index 48f2722..e1815a1 100644 --- a/SC1035.md +++ b/SC1035.md @@ -3,12 +3,12 @@ ### Problematic code: ```sh -if ![-z foo ]; then true; fi +if ![-z foo ]; then true; fi # if the command `[-z' with args `foo', `]' is not successful.. ``` ### Correct code: ```sh -if ! [ -z foo ]; then true; fi +if ! [ -z foo ]; then true; fi # if the command `[' with args `-z'. `foo', `]' is not sucessful.. ``` ### Rationale: