Fix syntax error in example master
Dagfinn Ilmari Mannsåker [Thu, 12 May 2022 11:32:27 +0000 (12:32 +0100)]
lib/SQL/Abstract.pm

index 97e3b19..8150396 100644 (file)
@@ -2875,7 +2875,7 @@ into an C<AND> of its elements:
 
 To get an OR instead, you can combine it with the arrayref idea:
 
-    my %where => (
+    my %where = (
          user => 'nwiger',
          priority => [ { '=', 2 }, { '>', 5 } ]
     );