Author: REHSACK
Date: Thu Dec 20 02:50:15 2012
New Revision: 15531

Modified:
   dbi/branches/sqlengine/lib/DBD/File/Developers.pod

Log:
tidy examples in pod as Tux would write the code

Modified: dbi/branches/sqlengine/lib/DBD/File/Developers.pod
==============================================================================
--- dbi/branches/sqlengine/lib/DBD/File/Developers.pod  (original)
+++ dbi/branches/sqlengine/lib/DBD/File/Developers.pod  Thu Dec 20 02:50:15 2012
@@ -444,11 +444,10 @@
 
   package DBD::File::DataSource::File;
 
-  sub complete_table_name ($$;$)
-  {
+  sub complete_table_name ($$;$) {
     my ( $self, $meta, $table, $respect_case ) = @_;
     ...
-  }
+    }
 
 The method C<complete_table_name> tries to map a filename to the associated
 table name.  It is called with a partially filled meta structure for the
@@ -462,11 +461,10 @@
 
   package DBD::File::DataSource::File;
 
-  sub open_data ($)
-  {
+  sub open_data ($) {
     my ( $self, $meta, $attrs, $flags ) = @_;
     ...
-  }
+    }
 
 Depending on the attributes set in the table's meta data, the
 following steps are performed. Unless C<< f_dontopen >> is set to a

Reply via email to