diff --git a/SC2051.md b/SC2051.md index 6c65590..278b948 100644 --- a/SC2051.md +++ b/SC2051.md @@ -1,4 +1,4 @@ -## Bash doesn't support variables in brace expansions. +## Bash doesn't support variables in brace range expansions. ### Problematic code: @@ -16,7 +16,7 @@ ### Rationale: -In Bash, brace expansion happens before variable expansion. This means that brace expansion will never account for variables. +In Bash, brace expansion happens before variable expansion. This means that brace expansion will not account for variables. Use an arithmetic for loop instead.