pod update: s/->storage->dbh->disconnect/->storage->disconnect/
Brandon L. Black [Tue, 7 Feb 2006 02:52:27 +0000 (02:52 +0000)]
lib/DBIx/Class/Manual/Cookbook.pod

index 59df7df..f287e92 100644 (file)
@@ -439,7 +439,7 @@ development, you might like to put the following signal handler in
 your main database class to make sure it disconnects cleanly:
 
   $SIG{INT} = sub {
-    __PACKAGE__->storage->dbh->disconnect;
+    __PACKAGE__->storage->disconnect;
   };
 
 =head2 Schema import/export