diff --git a/SC1042.md b/SC1042.md deleted file mode 100644 index 7ff6528..0000000 --- a/SC1042.md +++ /dev/null @@ -1,22 +0,0 @@ -## Close matches include `-eof` (!= `eof`). - -### Problematic code: - -```bash -#!/bin/bash -cat <<-eof -Hello World --eof -``` - -### Correct code: - -```bash -#!/bin/bash -cat <<- eof -Hello World -eof -``` - -## Rationale: -See companion error [[SC1041]]. This error occurs at the same time it. \ No newline at end of file