summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2013-11-28 00:36:38 -0500
committerLuke Shumaker <LukeShu@sbcglobal.net>2013-11-28 00:36:38 -0500
commitd098384dcf32921625c420d452466df4f5c696ad (patch)
tree307444fb8e9912ddbfc9c804cbfac0cec812c172
parentad559c83b26bc3c1d50afc8140ce3d4191b3c4b0 (diff)
fix typos in HACKING.md
-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):