Subject: | Fix confusing examples which uses @where |
[This part]() of doc says:
Show quoted text
> arrays are OR'ed, and things in hashes are AND'ed
and there is only example:
my($stmt, @bind) = $sql->where(\%where);
It must be extended by:
my($stmt, @bind) = $sql->where(\@where);
And the documentation for [where](https://metacpan.org/pod/SQL::Abstract#where(%5C%25where,-$order)) must be fixed.
Otherwise the examples which use array are confusing:
@where = (
event_date => {'>=', '2/13/99'},
event_date => {'<=', '4/24/03'},
);