From: Matt S Trout <mst@shadowcat.co.uk>
Date: Tue, 29 May 2007 01:11:27 +0000 (+0000)
Subject: re-add missing semicolon in pod
X-Git-Tag: v0.08010~150^2~49
X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=e04503dccdff0a877263c8d9eb9355a57d7e6114;p=dbsrgits%2FDBIx-Class.git

re-add missing semicolon in pod
---

diff --git a/lib/DBIx/Class/ResultSet.pm b/lib/DBIx/Class/ResultSet.pm
index 246c7f9..8987de1 100644
--- a/lib/DBIx/Class/ResultSet.pm
+++ b/lib/DBIx/Class/ResultSet.pm
@@ -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');