From 5eb17a0490b0f8769bc07e4a0ad723ce5c8dc377 Mon Sep 17 00:00:00 2001 From: Andreas Nordal <4992374+anordal@users.noreply.github.com> Date: Fri, 9 Apr 2021 09:05:45 +0200 Subject: [PATCH] Last sentence: comma rules --- SC2124.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/SC2124.md b/SC2124.md index a634a2e..1ddcee7 100644 --- a/SC2124.md +++ b/SC2124.md @@ -66,4 +66,5 @@ What was meant is: ``` filelist=("${filelist[@]}" "$filename") ``` -Note: this syntax is compatible with older shells, in later shells (bash 3.1+ and zsh 4.2+) you can do: ```filelist+=("$filename")``` +Note: This syntax is compatible with older shells; +in later shells (bash 3.1+ and zsh 4.2+), you can do `filelist+=("$filename")`.