From: Paul Cochrane <paul@liekut.de>
Date: Fri, 12 Jun 2015 10:59:33 +0000 (+0200)
Subject: Add space after =cut statement
X-Git-Tag: v0.11022~42
X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=33d693c35afb6bc4489713991672073c5674f626;p=dbsrgits%2FSQL-Translator.git

Add space after =cut statement

This corrects the 'Spurious text after =cut' errors found by podchecker.
---

diff --git a/lib/SQL/Translator/Generator/DDL/PostgreSQL.pm b/lib/SQL/Translator/Generator/DDL/PostgreSQL.pm
index cdf5049..109eb3c 100644
--- a/lib/SQL/Translator/Generator/DDL/PostgreSQL.pm
+++ b/lib/SQL/Translator/Generator/DDL/PostgreSQL.pm
@@ -10,6 +10,7 @@ engine.
 I<documentation volunteers needed>
 
 =cut
+
 use Moo;
 
 has quote_chars => (
diff --git a/lib/SQL/Translator/Generator/DDL/SQLite.pm b/lib/SQL/Translator/Generator/DDL/SQLite.pm
index 621ff8a..afce4b3 100644
--- a/lib/SQL/Translator/Generator/DDL/SQLite.pm
+++ b/lib/SQL/Translator/Generator/DDL/SQLite.pm
@@ -10,6 +10,7 @@ engine.
 I<documentation volunteers needed>
 
 =cut
+
 use Moo;
 
 has quote_chars => (is=>'ro', default=>sub { +[qw(" ")] } );