From: Dagfinn Ilmari Mannsåker Date: Thu, 12 May 2022 11:32:27 +0000 (+0100) Subject: Fix syntax error in example X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=dbsrgits%2FSQL-Abstract.git;a=commitdiff_plain;h=6dc192f645b96636659d10a016b0a4d1e9e1c1b9 Fix syntax error in example --- diff --git a/lib/SQL/Abstract.pm b/lib/SQL/Abstract.pm index 97e3b19..8150396 100644 --- a/lib/SQL/Abstract.pm +++ b/lib/SQL/Abstract.pm @@ -2875,7 +2875,7 @@ into an C 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 } ] );