[svn:parrot] r37864 - trunk/lib/Parrot

jkeenan at svn.parrot.org jkeenan at svn.parrot.org
Thu Apr 2 02:30:12 UTC 2009


Author: jkeenan
Date: Thu Apr  2 02:30:12 2009
New Revision: 37864
URL: https://trac.parrot.org/parrot/changeset/37864

Log:
codingstd:  No cuddled 'else's.

Modified:
   trunk/lib/Parrot/Headerizer.pm

Modified: trunk/lib/Parrot/Headerizer.pm
==============================================================================
--- trunk/lib/Parrot/Headerizer.pm	Thu Apr  2 02:28:25 2009	(r37863)
+++ trunk/lib/Parrot/Headerizer.pm	Thu Apr  2 02:30:12 2009	(r37864)
@@ -266,7 +266,8 @@
         my $chunk = shift @doc_chunks;
         if (length(join(' ', @line, $chunk)) <= $line_len) {
             push @line, $chunk;
-        } else {
+        }
+        else {
             $split_decl .= join(' ', @line) . "\n";
             @line=($chunk);
         }


More information about the parrot-commits mailing list