From eedcf8722d20ea630c9f01ff63ac2cfa76c2bfdc Mon Sep 17 00:00:00 2001 From: Michael Heyns Date: Sat, 4 Jan 2020 19:27:04 +1300 Subject: [PATCH] Amend closing parenthesis for explaining "multiple words (separated by spaces)" --- SC2207.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SC2207.md b/SC2207.md index 2817e41..d5b7cae 100644 --- a/SC2207.md +++ b/SC2207.md @@ -23,7 +23,7 @@ array=() mycommand | while IFS="" read -r line; do array+=("$line"); done ``` -If it outputs a line with multiple words (separated by spaces, other delimiters can be chosen with IFS), each of which should be an element: +If it outputs a line with multiple words (separated by spaces), other delimiters can be chosen with IFS, each of which should be an element: ```sh # For bash