You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spamassassin.apache.org by co...@spamassassin.apache.org on 2004/11/22 11:37:38 UTC

[SpamAssassin Wiki] Updated: CodingStyle

   Date: 2004-11-22T02:37:38
   Editor: DanielQuinlan <qu...@pathname.com>
   Wiki: SpamAssassin Wiki
   Page: CodingStyle
   URL: http://wiki.apache.org/spamassassin/CodingStyle

   indent by 2 in example

Change Log:

------------------------------------------------------------------------------
@@ -17,15 +17,15 @@
 
 {{{
   if ($foo) {
-     do_foo();
+    do_foo();
   }
   elsif ($bar_really_long_condition_that_lasts_longer_than_40_columns &&
          $foo_really_long_condition_that_lasts_longer_than_40_columns)
   {
-     do_bar();
+    do_bar();
   }
   else {
-     do_else();
+    do_else();
   }
 }}}