Fixed small POD mistake
Robert Bohne [Wed, 7 Apr 2010 05:06:54 +0000 (05:06 +0000)]
lib/SQL/Abstract.pm

index 7eb2273..3a1356b 100644 (file)
@@ -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,