diff --git a/SC1035.md b/SC1035.md index e1815a1..a309309 100644 --- a/SC1035.md +++ b/SC1035.md @@ -3,12 +3,12 @@ ### Problematic code: ```sh -if ![-z foo ]; then true; fi # if the command `[-z' with args `foo', `]' is not successful.. +if ![-z foo ]; then true; fi # if command `[-z' w/ args `foo', `]' fails.. ``` ### Correct code: ```sh -if ! [ -z foo ]; then true; fi # if the command `[' with args `-z'. `foo', `]' is not sucessful.. +if ! [ -z foo ]; then true; fi # if command `[' w/ args `-z'. `foo', `]' fails.. ``` ### Rationale: