doc fix£
Matt S Trout [Fri, 10 Mar 2006 19:42:18 +0000 (19:42 +0000)]
lib/DBIx/Class/Manual/SchemaIntro.pod

index 996d142..11936b2 100644 (file)
@@ -147,11 +147,11 @@ Likewise, you can remove it from the database like this:
 
   $new_album->delete;
 
-You can also remove records without or retrieving first.  This
-operation takes the same kind of arguments as a search.
+You can also remove records without retrieving them first, by calling
+delete directly on a ResultSet object.
 
   # Delete all of Falco's albums
-  $schema->resultset('Album')->delete({ artist => 'Falco' });
+  $schema->resultset('Album')->search({ artist => 'Falco' })->delete;
 
 =head2 Finding your objects