From: Norbert Buchmuller Date: Wed, 11 Mar 2009 23:45:11 +0000 (+0000) Subject: Fixed my typos/wording errors in the POD. X-Git-Tag: v1.70~212 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=62552e7d9a3c1145b8284b2eb719112d6903cd18;p=dbsrgits%2FSQL-Abstract.git Fixed my typos/wording errors in the POD. --- diff --git a/lib/SQL/Abstract.pm b/lib/SQL/Abstract.pm index 58902e7..c282c27 100644 --- a/lib/SQL/Abstract.pm +++ b/lib/SQL/Abstract.pm @@ -1920,12 +1920,12 @@ This would create: @bind = ('10'); Note that you must pass the bind values in the same format as they are returned -by C. That means that if you set L to C, you must +by L. That means that if you set L to C, you must provide the bind values in the C<< [ column_meta => value ] >> format, where C is an opaque scalar value; most commonly the column name, but -you can use any scalar scalar value (including references and blessed -references), L will simply pass it through intact. So eg. the -above example will look like: +you can use any scalar value (including references and blessed references), +L will simply pass it through intact. So if C is set +to C the above example will look like: my %where = ( date_column => \[q/= date '2008-09-30' - ?::integer/, [ dummy => 10 ]/]