From: Dagfinn Ilmari Mannsåker Date: Sat, 14 Sep 2013 16:46:59 +0000 (+0100) Subject: Fix typo in synopsis X-Git-Tag: v0.011017~13 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=df1a7d23ff67a814ce63da6283be7fe7ef646899;p=dbsrgits%2FSQL-Translator.git Fix typo in synopsis --- diff --git a/lib/SQL/Translator/Types.pm b/lib/SQL/Translator/Types.pm index f2cdb03..b820013 100644 --- a/lib/SQL/Translator/Types.pm +++ b/lib/SQL/Translator/Types.pm @@ -11,7 +11,7 @@ SQL::Translator::Types - Type checking functions use SQL::Translator::Types qw(schema_obj enum); has foo => ( is => 'rw', isa => schema_obj('Trigger') ); - has bar => ( is => 'rw', isa => enum([q(baz quux quuz)], { + has bar => ( is => 'rw', isa => enum([qw(baz quux quuz)], { msg => "Invalid value for bar: '%s'", icase => 1, });