From: Matt S Trout Date: Thu, 3 Nov 2005 21:10:26 +0000 (+0000) Subject: POD fixes X-Git-Tag: v0.05005~185 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=8918977e98800ece6e7eefcf292d7512138ad48d;p=dbsrgits%2FDBIx-Class.git POD fixes --- diff --git a/lib/DBIx/Class/Manual/Intro.pod b/lib/DBIx/Class/Manual/Intro.pod index 10cb50e..c8c9978 100644 --- a/lib/DBIx/Class/Manual/Intro.pod +++ b/lib/DBIx/Class/Manual/Intro.pod @@ -28,7 +28,7 @@ mostly useful if you want to use multiple database connections. If you want serial/auto-incremental primary keys, you'll need to add the apropriate component for your db as well, for example - __PACKAGE__->load_components(qw/Core DB PK::Auto::SQLite/); + __PACKAGE__->load_components(qw/PK::Auto::SQLite Core DB/); Once you've loaded the components, it's time to set up your connection: diff --git a/lib/DBIx/Class/Relationship/Base.pm b/lib/DBIx/Class/Relationship/Base.pm index 7c84ace..2747995 100644 --- a/lib/DBIx/Class/Relationship/Base.pm +++ b/lib/DBIx/Class/Relationship/Base.pm @@ -9,7 +9,7 @@ __PACKAGE__->mk_classdata('_relationships', { } ); =head1 NAME -DBIx::Class::Relationship - Inter-table relationships +DBIx::Class::Relationship::Base - Inter-table relationships =head1 SYNOPSIS