From: Jess Robinson Date: Mon, 29 Jan 2007 16:28:12 +0000 (+0000) Subject: Make POD a little more obvious about component order X-Git-Tag: v0.08010~191 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=943f93f2309a88d1bd008e24947e8906be054e9d;p=dbsrgits%2FDBIx-Class.git Make POD a little more obvious about component order --This line, and those below, will be ignored-- M DateTime.pm --- diff --git a/lib/DBIx/Class/InflateColumn/DateTime.pm b/lib/DBIx/Class/InflateColumn/DateTime.pm index 27ceaeb..6b012d8 100644 --- a/lib/DBIx/Class/InflateColumn/DateTime.pm +++ b/lib/DBIx/Class/InflateColumn/DateTime.pm @@ -14,7 +14,7 @@ Load this component and then declare one or more columns to be of the datetime, timestamp or date datatype. package Event; - __PACKAGE__->load_components(qw/InflateColumn::DateTime/); + __PACKAGE__->load_components(qw/Core InflateColumn::DateTime/); __PACKAGE__->add_columns( starts_when => { data_type => 'datetime' } ); @@ -33,7 +33,7 @@ one your code should continue to work without modification (though note that this feature is new as of 0.07, so it may not be perfect yet - bug reports to the list very much welcome). -For more help with components, see L. +For more help with using components, see L. =cut