pod fix (RT #32988)
Brian Cassidy [Fri, 9 May 2008 02:55:30 +0000 (02:55 +0000)]
Changes
lib/DBIx/Class/Relationship/Base.pm

diff --git a/Changes b/Changes
index d774edd..d15c510 100644 (file)
--- 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
index 10eebcd..3a95b3c 100644 (file)
@@ -435,7 +435,7 @@ B<Currently only available for C<many-to-many> 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