- Fixed POD producer
Jonathan Yu [Wed, 14 Jan 2009 15:56:38 +0000 (15:56 +0000)]
Bug: constraints were not providing two newlines \n\n after each item; the =back command was not put on a different line, causing POD errors

lib/SQL/Translator/Producer/POD.pm

index 04bd685..c28aec9 100644 (file)
@@ -116,11 +116,11 @@ sub produce {
                 }
 
                 if ( my $update = $c->on_update ) {
-                    $pod .= "=item * On update = $update";
+                    $pod .= "=item * On update = $update\n\n";
                 }
 
                 if ( my $delete = $c->on_delete ) {
-                    $pod .= "=item * On delete = $delete";
+                    $pod .= "=item * On delete = $delete\n\n";
                 }
 
                 $pod .= "=back\n\n";