From: Brian Cassidy Date: Fri, 9 May 2008 02:55:30 +0000 (+0000) Subject: pod fix (RT #32988) X-Git-Tag: v0.08240~454 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=debccec366712b30efb0e43e4d263440992f8915;p=dbsrgits%2FDBIx-Class.git pod fix (RT #32988) --- diff --git a/Changes b/Changes index d774edd..d15c510 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,6 @@ Revision history for DBIx::Class + - pod fix (RT #32988) - add Test::Exception to test requirements (RT #34256) - make ash's build_requires/META.yml fixes work better - is_deferable support on relations used by the SQL::Translator diff --git a/lib/DBIx/Class/Relationship/Base.pm b/lib/DBIx/Class/Relationship/Base.pm index 10eebcd..3a95b3c 100644 --- a/lib/DBIx/Class/Relationship/Base.pm +++ b/lib/DBIx/Class/Relationship/Base.pm @@ -435,7 +435,7 @@ B relationships.> my $actor = $schema->resultset('Actor')->find(1); my @roles = $schema->resultset('Role')->search({ role => - { '-in' -> ['Fred', 'Barney'] } } ); + { '-in' => ['Fred', 'Barney'] } } ); $actor->set_roles(\@roles); # Replaces all of $actor's previous roles with the two named