re-add missing semicolon in pod
Matt S Trout [Tue, 29 May 2007 01:11:27 +0000 (01:11 +0000)]
lib/DBIx/Class/ResultSet.pm

index 246c7f9..8987de1 100644 (file)
@@ -34,7 +34,7 @@ In the examples below, the following table classes are used:
 
   package MyApp::Schema::Artist;
   use base qw/DBIx::Class/;
-  __PACKAGE__->load_components(qw/Core/)
+  __PACKAGE__->load_components(qw/Core/);
   __PACKAGE__->table('artist');
   __PACKAGE__->add_columns(qw/artistid name/);
   __PACKAGE__->set_primary_key('artistid');