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: