aboutsummaryrefslogtreecommitdiff
path: root/doc/coding_style.mdwn
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2012-10-28 21:38:41 -0400
committerGravatar Joey Hess <joey@kitenet.net>2012-10-28 21:38:41 -0400
commit6ea085e7fe12d6c9743b1634cb5f7c4e622ebc3f (patch)
treec7439d6edf85bbb480e647f24cb44ce4e9274777 /doc/coding_style.mdwn
parent0bfecae28ad049bcb1d39cac35d952160ebb49cc (diff)
update
Diffstat (limited to 'doc/coding_style.mdwn')
-rw-r--r--doc/coding_style.mdwn7
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. ;)