projects
/
dbsrgits/SQL-Translator.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
e533bcd
)
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
patch
|
blob
|
blame
|
history
lib/SQL/Translator/Generator/DDL/SQLite.pm
patch
|
blob
|
blame
|
history
diff --git
a/lib/SQL/Translator/Generator/DDL/PostgreSQL.pm
b/lib/SQL/Translator/Generator/DDL/PostgreSQL.pm
index
cdf5049
..
109eb3c
100644
(file)
--- 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
(file)
--- 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(" ")] } );