From: Brandon L. Black Date: Tue, 31 Jan 2006 02:18:25 +0000 (+0000) Subject: some trivial fixes for "TEST_POD=1 make test" failures X-Git-Tag: v0.05005~70 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=5160b40103b81efb28aeb46c61a0d071c636a923;hp=132f3b89d800d42ce91196b3933d8f2e537129b2;p=dbsrgits%2FDBIx-Class.git some trivial fixes for "TEST_POD=1 make test" failures --- diff --git a/lib/DBIx/Class/Row.pm b/lib/DBIx/Class/Row.pm index 54c0763..4c66600 100644 --- a/lib/DBIx/Class/Row.pm +++ b/lib/DBIx/Class/Row.pm @@ -340,7 +340,7 @@ sub register_column { } -=item throw_exception +=head2 throw_exception See Schema's throw_exception. diff --git a/lib/DBIx/Class/Schema.pm b/lib/DBIx/Class/Schema.pm index c84e0a7..59fca81 100644 --- a/lib/DBIx/Class/Schema.pm +++ b/lib/DBIx/Class/Schema.pm @@ -347,7 +347,7 @@ sub clone { return $clone; } -=item populate($moniker, \@data); +=head2 populate($moniker, \@data); Populates the source registered with the given moniker with the supplied data. @data should be a list of listrefs, the first containing column names, the @@ -373,7 +373,7 @@ sub populate { } } -=item throw_exception +=head2 throw_exception Defaults to using Carp::Clan to report errors from user perspective.