From: Dagfinn Ilmari Mannsåker Date: Fri, 12 Dec 2014 17:09:00 +0000 (+0000) Subject: Further clean up PostrgreSQL array types examples X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=09380b0692fdb72739351fca93ee7fb696db365e;hp=10e72c6e2d60efceb8c64ef008a9fbdeb1f43852;p=dbsrgits%2FDBIx-Class.git Further clean up PostrgreSQL array types examples - Add trailing comma in hashes - Remove pointless 'day' key from update example --- diff --git a/lib/DBIx/Class/Manual/Cookbook.pod b/lib/DBIx/Class/Manual/Cookbook.pod index 3270f03..3cd706f 100644 --- a/lib/DBIx/Class/Manual/Cookbook.pod +++ b/lib/DBIx/Class/Manual/Cookbook.pod @@ -1737,12 +1737,11 @@ L and L family of methods: $resultset->create({ - numbers => [1, 2, 3] + numbers => [1, 2, 3], }); $result->update({ - numbers => [1, 2, 3] - day => '2008-11-24' + numbers => [1, 2, 3], }); In conditions (e.g. C<\%cond> in the L family of