diff options
author | Joey Hess <joey@kitenet.net> | 2012-10-28 21:38:41 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2012-10-28 21:38:41 -0400 |
commit | 6ea085e7fe12d6c9743b1634cb5f7c4e622ebc3f (patch) | |
tree | c7439d6edf85bbb480e647f24cb44ce4e9274777 | |
parent | 0bfecae28ad049bcb1d39cac35d952160ebb49cc (diff) |
update
-rw-r--r-- | doc/coding_style.mdwn | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/doc/coding_style.mdwn b/doc/coding_style.mdwn index 2e7da2c13..ae76d2356 100644 --- a/doc/coding_style.mdwn +++ b/doc/coding_style.mdwn @@ -83,3 +83,10 @@ name in a let clause, this is sometimes used: foo = let x = 42 in x + (x-1) + x + +----- + +If you feel that this coding style leads to excessive amounts of horizontal +or vertical whitespace around your code, making it hard to fit enough of it +on the screen, consider finding a better abstraction, so the code that +does fit on the screen is easily understandable. ;) |