diff --git a/SC1045.md b/SC1045.md new file mode 100644 index 0000000..26e043a --- /dev/null +++ b/SC1045.md @@ -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. \ No newline at end of file