diff options
author | Ted Pavlic <ted@tedpavlic.com> | 2009-01-04 21:55:49 -0500 |
---|---|---|
committer | Ted Pavlic <ted@tedpavlic.com> | 2009-01-04 21:55:49 -0500 |
commit | b644259f83bec637e4795c15006dcd6cf4d721a4 (patch) | |
tree | fd2a95860a27592be49d25903d6bbceae38be591 /HACKING | |
parent | 3befa0120ba392b4c6fbf700608f77b37e32d83e (diff) | |
download | pentadactyl-b644259f83bec637e4795c15006dcd6cf4d721a4.tar.gz |
HACKING spelling stuff
Diffstat (limited to 'HACKING')
-rw-r--r-- | HACKING | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ == Coding Style == -In gerneral: Just look at other source code! +In general: Just look at other source code! We try to be quite consistent, but of course, that's not always possible. === The most important style issues are: === @@ -11,7 +11,7 @@ We try to be quite consistent, but of course, that's not always possible. * Exactly one space after if/for/while/etc. and after a comma, but none after a parenthesis or after a function call: - for (pre, contition, post) + for (pre, condition, post) but: alert("bla"); |