From: Alexander Hartmaier Date: Tue, 27 Apr 2010 13:58:56 +0000 (+0000) Subject: fixed missing ' in update_or_create with key attr example X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=f2c08970aa4d4f4a040a959b7d969da28bffd043;p=dbsrgits%2FDBIx-Class-Historic.git fixed missing ' in update_or_create with key attr example --- diff --git a/lib/DBIx/Class/ResultSet.pm b/lib/DBIx/Class/ResultSet.pm index 46f2d29..a360d3e 100644 --- a/lib/DBIx/Class/ResultSet.pm +++ b/lib/DBIx/Class/ResultSet.pm @@ -2298,7 +2298,7 @@ For example: producer => $producer, name => 'harry', }, { - key => 'primary, + key => 'primary', });