From: Alexandr Ciornii Date: Wed, 5 Mar 2014 20:48:55 +0000 (+0200) Subject: typos X-Git-Tag: v0.082800~235 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=56b1de0caac34b5acf217fa0f01b2a5eda194077;p=dbsrgits%2FDBIx-Class.git typos --- diff --git a/lib/DBIx/Class/Manual/Troubleshooting.pod b/lib/DBIx/Class/Manual/Troubleshooting.pod index f76934e..b28a960 100644 --- a/lib/DBIx/Class/Manual/Troubleshooting.pod +++ b/lib/DBIx/Class/Manual/Troubleshooting.pod @@ -21,7 +21,7 @@ Alternatively use the C<< storage->debug >> class method:- To send the output somewhere else set debugfh:- - $schema->storage->debugfh(IO::File->new('/tmp/trace.out', 'w'); + $schema->storage->debugfh(IO::File->new('/tmp/trace.out', 'w')); Alternatively you can do this with the environment variable, too:- diff --git a/lib/DBIx/Class/Storage.pm b/lib/DBIx/Class/Storage.pm index 5cc1fe1..1addeaf 100644 --- a/lib/DBIx/Class/Storage.pm +++ b/lib/DBIx/Class/Storage.pm @@ -435,7 +435,7 @@ shell environment. =head2 debugfh Set or retrieve the filehandle used for trace/debug output. This should be -an IO::Handle compatible object (only the C method is used. Initially +an IO::Handle compatible object (only the C method is used). Initially set to be STDERR - although see information on the L environment variable.