Created SC1045 (markdown)

koalaman
2014-02-20 12:50:34 -08:00
parent 56a5e1772e
commit 716d8320ab

19
SC1045.md Normal file

@@ -0,0 +1,19 @@
# It's not 'foo &; bar', just 'foo & bar'.
### Problematic code:
foo &; bar
### Correct code:
foo & bar
### Rationale:
Both `&` and `;` terminate the command. You should only use one of them.
### Contraindications
None.