From: moltar Date: Wed, 8 Jun 2011 17:04:19 +0000 (-0400) Subject: Fixed a typo in the POD X-Git-Tag: v0.08193~18 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=326dacbf26053d71e58f4a93cc5104b663b59c21;p=dbsrgits%2FDBIx-Class.git Fixed a typo in the POD --- diff --git a/lib/DBIx/Class.pm b/lib/DBIx/Class.pm index 6310697..01f9500 100644 --- a/lib/DBIx/Class.pm +++ b/lib/DBIx/Class.pm @@ -155,7 +155,7 @@ See L for docs on defining result classes. __PACKAGE__->table('artist'); __PACKAGE__->add_columns(qw/ artistid name /); __PACKAGE__->set_primary_key('artistid'); - __PACKAGE__->has_many(cds => 'MyApp::Schema::Result::CD'); + __PACKAGE__->has_many(cds => 'MyApp::Schema::Result::CD', 'artistid'); 1;