POD fixes
Matt S Trout [Thu, 3 Nov 2005 21:10:26 +0000 (21:10 +0000)]
lib/DBIx/Class/Manual/Intro.pod
lib/DBIx/Class/Relationship/Base.pm

index 10cb50e..c8c9978 100644 (file)
@@ -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:
 
index 7c84ace..2747995 100644 (file)
@@ -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