From: Robert Bohne Date: Wed, 7 Apr 2010 05:06:54 +0000 (+0000) Subject: Fixed small POD mistake X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=855e6047483733b10264818a1b85364a7871d05b;p=scpubgit%2FQ-Branch.git Fixed small POD mistake --- diff --git a/lib/SQL/Abstract.pm b/lib/SQL/Abstract.pm index 7eb2273..3a1356b 100644 --- a/lib/SQL/Abstract.pm +++ b/lib/SQL/Abstract.pm @@ -2404,7 +2404,7 @@ or an array of either of the two previous forms. Examples: | ['colA', {-asc => 'colB'}] | ORDER BY colA, colB ASC | - { -asc => [qw/colA colB] } | ORDER BY colA ASC, colB ASC + { -asc => [qw/colA colB/] } | ORDER BY colA ASC, colB ASC | [ | { -asc => 'colA' }, | ORDER BY colA ASC, colB DESC,