diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2013-11-28 00:36:38 -0500 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2013-11-28 00:36:38 -0500 |
commit | d098384dcf32921625c420d452466df4f5c696ad (patch) | |
tree | 307444fb8e9912ddbfc9c804cbfac0cec812c172 | |
parent | ad559c83b26bc3c1d50afc8140ce3d4191b3c4b0 (diff) |
fix typos in HACKING.md
-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): |