From 421839548dba574bfe065e30eda04e47cc65a31b Mon Sep 17 00:00:00 2001 From: Olliver Schinagl Date: Thu, 7 Oct 2021 09:39:26 +0200 Subject: [PATCH] for consistency, use double semi-colon on the last/default case. While not strictly needed, it makes for consistent reading; and easy (diffable) extending when adding a new statement below. --- SC2249.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SC2249.md b/SC2249.md index 5dca599..882a8c7 100644 --- a/SC2249.md +++ b/SC2249.md @@ -50,7 +50,7 @@ If you don't have a default case because the default should be to take no action case "$(uname)" in CYGWIN*) cygwin=1;; MINGW*) mingw=1;; - *) # No special workarounds identified + *) ;; # No special workarounds identified esac ```