Updated SC1088 (markdown)

faizan431517
2020-05-02 03:16:42 -07:00
parent 817026e0ef
commit a1a85ccf8b

@@ -2,15 +2,15 @@
### Problematic code:
```sh
grep ^(.*)\1$ file
grep '^(.*)\1$' file
```
or
```sh
var = myfunction(value)
```
var=$(myfunction value)
### Correct code: