From 716d8320ab62ea50e4e14fc928fa6da9bd05c98c Mon Sep 17 00:00:00 2001 From: koalaman Date: Thu, 20 Feb 2014 12:50:34 -0800 Subject: [PATCH] Created SC1045 (markdown) --- SC1045.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 SC1045.md 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