diff options
-rw-r--r-- | HACKING.md | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -159,7 +159,7 @@ My brief rules of thumb: # GOOD while read line; do ... - done <(prog) + done < <(prog) Style guidelines @@ -181,7 +181,7 @@ space) } The `; then` and `; do` should go on the same line as -`if`/`elif`/`for`/`while`. Also, there is no space before th `;`. +`if`/`elif`/`for`/`while`. Also, there is no space before the `;`. Prefer the `for VAR in LIST` syntax over the `for ((init; cond; inc))` syntax, when possible. For example (heh, `for` example): |