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")`.