summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--HACKING.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/HACKING.md b/HACKING.md
index 73556a4..2e5937b 100644
--- a/HACKING.md
+++ b/HACKING.md
@@ -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):