Subject: | Syntax error in usage example in POD |
There's a syntax error in the DDL::Oracle->new example in the synopsis.
The attached patch fixes it.
Subject: | fix_ddl_oracle_pod.patch |
diff -ruN DDL-Oracle-1.11/Oracle.pm DDL-Oracle-1.12/Oracle.pm
--- DDL-Oracle-1.11/Oracle.pm 2002-05-22 08:31:49.000000000 -0700
+++ DDL-Oracle-1.12/Oracle.pm 2008-12-02 10:18:33.000000000 -0800
@@ -8413,7 +8413,7 @@
my $obj = DDL::Oracle->new(
type => 'table',
- list => $list, );
+ list => $list,
);
my $ddl = $obj->create; # or $obj->resize; or $obj->drop; etc.