updated README v0.08
Brian Cassidy [Thu, 23 Aug 2007 15:02:04 +0000 (15:02 +0000)]
README

diff --git a/README b/README
index cef9105..132ee9c 100644 (file)
--- a/README
+++ b/README
@@ -3,7 +3,7 @@ NAME
     transparently
 
 VERSION
-    This document describes Config::Any version 0.0.7
+    This document describes Config::Any version 0.0.8
 
 SYNOPSIS
         use Config::Any;
@@ -35,7 +35,7 @@ DESCRIPTION
 
 INTERFACE
   load_files( )
-        Config::Any->load_files({files => \@files]});
+        Config::Any->load_files({files => \@files});
         Config::Any->load_files({files => \@files, filter  => \&filter});
         Config::Any->load_files({files => \@files, use_ext => 1});
 
@@ -61,6 +61,13 @@ INTERFACE
     forcing it to be offered to a particular parser. It is not compatible
     with 'use_ext'.
 
+    You can supply a "driver_args" hashref to pass special options to a
+    particular parser object. Example:
+
+        Config::Any->load_files( { files => \@files, driver_args => {
+            General => { -LowerCaseNames => 1 }
+        } )
+
   load_stems( )
         Config::Any->load_stems({stems => \@stems]});
         Config::Any->load_stems({stems => \@stems, filter  => \&filter});