From d098384dcf32921625c420d452466df4f5c696ad Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Thu, 28 Nov 2013 00:36:38 -0500 Subject: fix typos in HACKING.md --- HACKING.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'HACKING.md') 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): -- cgit v1.2.3