Add space after =cut statement
Paul Cochrane [Fri, 12 Jun 2015 10:59:33 +0000 (12:59 +0200)]
This corrects the 'Spurious text after =cut' errors found by podchecker.

lib/SQL/Translator/Generator/DDL/PostgreSQL.pm
lib/SQL/Translator/Generator/DDL/SQLite.pm

index cdf5049..109eb3c 100644 (file)
@@ -10,6 +10,7 @@ engine.
 I<documentation volunteers needed>
 
 =cut
+
 use Moo;
 
 has quote_chars => (
index 621ff8a..afce4b3 100644 (file)
@@ -10,6 +10,7 @@ engine.
 I<documentation volunteers needed>
 
 =cut
+
 use Moo;
 
 has quote_chars => (is=>'ro', default=>sub { +[qw(" ")] } );