From cc359c21feed7cb6b21d7e62f5667f9f992f2a83 Mon Sep 17 00:00:00 2001 From: koalaman Date: Sun, 25 May 2014 11:41:17 -0700 Subject: [PATCH] Updated SC2051 (markdown) --- SC2051.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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.