Further clean up PostrgreSQL array types examples
Dagfinn Ilmari Mannsåker [Fri, 12 Dec 2014 17:09:00 +0000 (17:09 +0000)]
- Add trailing comma in hashes
- Remove pointless 'day' key from update example

lib/DBIx/Class/Manual/Cookbook.pod

index 3270f03..3cd706f 100644 (file)
@@ -1737,12 +1737,11 @@ L<DBIx::Class::ResultSet/create> and L<DBIx::Class::Row/update> 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<DBIx::Class::ResultSet/search> family of