Updated SC1035 (markdown)

Mingye Wang
2015-09-30 09:40:53 -04:00
parent 4d7333cb68
commit 0d86ed8ae0

@@ -2,11 +2,14 @@
### Problematic code:
if ![-z foo ]; then true; fi
```sh
if ![-z foo ]; then true; fi
```
### Correct code:
if ! [ -z foo ]; then true; fi
```sh
if ! [ -z foo ]; then true; fi
```
### Rationale: