add exception for uncuddling brackets
diff --git a/docs/style-guide.txt b/docs/style-guide.txt
index d7d8e5e..71eb629 100644
--- a/docs/style-guide.txt
+++ b/docs/style-guide.txt
@@ -126,6 +126,15 @@
do {
+Exceptions:
+
+ - if you have long logic statements that need to be wrapped, then uncuddling
+ the bracket to improve readability is allowed:
+
+ if (some_really_long_checks && some_other_really_long_checks \
+ && some_more_really_long_checks)
+ {
+ do_foo_now;
Spacing around Parentheses
~~~~~~~~~~~~~~~~~~~~~~~~~~