Minor update to find_or_create docs re: how it searches
Daniel Westermann-Clark [Fri, 26 May 2006 04:35:59 +0000 (04:35 +0000)]
lib/DBIx/Class/ResultSet.pm

index 0b9d84f..c2bde27 100644 (file)
@@ -1314,8 +1314,8 @@ sub create {
 
   $class->find_or_create({ key => $val, ... });
 
-Searches for a record matching the search condition; if it doesn't find one,
-creates one and returns that instead.
+Tries to find a record based on its primary key or unique constraint; if none
+is found, creates one and returns that instead.
 
   my $cd = $schema->resultset('CD')->find_or_create({
     cdid   => 5,