[Bast-commits] r8288 - in DBIx-Class-QueryLog/1.0/trunk: . lib/DBIx/Class

gphat at dev.catalyst.perl.org gphat at dev.catalyst.perl.org
Tue Jan 12 23:36:33 GMT 2010


Author: gphat
Date: 2010-01-12 23:36:33 +0000 (Tue, 12 Jan 2010)
New Revision: 8288

Modified:
   DBIx-Class-QueryLog/1.0/trunk/Changes
   DBIx-Class-QueryLog/1.0/trunk/lib/DBIx/Class/QueryLog.pm
Log:
Fix some POD typos and whatnot.


Modified: DBIx-Class-QueryLog/1.0/trunk/Changes
===================================================================
--- DBIx-Class-QueryLog/1.0/trunk/Changes	2010-01-12 22:48:25 UTC (rev 8287)
+++ DBIx-Class-QueryLog/1.0/trunk/Changes	2010-01-12 23:36:33 UTC (rev 8288)
@@ -1,5 +1,10 @@
 Revision history for DBIx-Class-QueryLog
 
+1.2.3
+    - POD typo fixes (Thanks Nigel McNie)
+    - Version number change
+    - Some Moose cleanup
+
 1.2.2
     - Don't make QueryLog immutable, as it's ancestor isn't.
 

Modified: DBIx-Class-QueryLog/1.0/trunk/lib/DBIx/Class/QueryLog.pm
===================================================================
--- DBIx-Class-QueryLog/1.0/trunk/lib/DBIx/Class/QueryLog.pm	2010-01-12 22:48:25 UTC (rev 8287)
+++ DBIx-Class-QueryLog/1.0/trunk/lib/DBIx/Class/QueryLog.pm	2010-01-12 23:36:33 UTC (rev 8288)
@@ -32,7 +32,7 @@
 has passthrough => (
     is => 'rw',
     isa => 'Bool',
-    default => sub { 0 }
+    default => 0
 );
 
 before 'add_to_log' => sub {
@@ -54,7 +54,7 @@
 
 =cut
 
-our $VERSION = '1.2.2';
+our $VERSION = '1.2.3';
 
 =head1 SYNOPSIS
 
@@ -89,8 +89,10 @@
 of a QueryLog session.
 
 If you wish to have the QueryLog collecting results, and the normal trace
-output of SQL queries from DBIx::Class, then set C<passthru> to 1
+output of SQL queries from DBIx::Class, then set C<passthrough> to 1
 
+  $ql->passthrough(1);
+
 =head1 BUCKETS
 
 Sometimes you want to break your analysis down into stages.  To segregate the




More information about the Bast-commits mailing list