From: Arthur Axel "fREW" Schmidt Date: Sat, 30 Jan 2010 20:24:21 +0000 (+0000) Subject: no first in POD X-Git-Tag: v0.08121~83^2~6 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=5292892eb340d96c85dba2b321ea2a65e758f440;p=dbsrgits%2FDBIx-Class.git no first in POD --- diff --git a/lib/DBIx/Class/Manual/Intro.pod b/lib/DBIx/Class/Manual/Intro.pod index 5325fa0..2728c5a 100644 --- a/lib/DBIx/Class/Manual/Intro.pod +++ b/lib/DBIx/Class/Manual/Intro.pod @@ -434,7 +434,7 @@ For example, the following would not work: my $row = $schema->resultset('People') ->search({ last_name => 'Dantes' }) - ->first; + ->next; $row->update({ children => 2 }); # <-- exception thrown because $row isn't # necessarily unique