From ad25e881d3e17e13d70a867bcd38389bac40309b Mon Sep 17 00:00:00 2001 From: ritchiepapirin <145656238+ritchiepapirin@users.noreply.github.com> Date: Mon, 9 Oct 2023 05:39:00 +0000 Subject: [PATCH] Destroyed SC1042 (markdown) --- SC1042.md | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 SC1042.md 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