Author: oheger Date: Sat May 23 14:57:42 2009 New Revision: 777938 URL: http://svn.apache.org/viewvc?rev=777938&view=rev Log: Documentation fix. Ported from trunk.
Modified: commons/proper/configuration/branches/configuration2_experimental/xdocs/userguide/howto_compositeconfiguration.xml Modified: commons/proper/configuration/branches/configuration2_experimental/xdocs/userguide/howto_compositeconfiguration.xml URL: http://svn.apache.org/viewvc/commons/proper/configuration/branches/configuration2_experimental/xdocs/userguide/howto_compositeconfiguration.xml?rev=777938&r1=777937&r2=777938&view=diff ============================================================================== --- commons/proper/configuration/branches/configuration2_experimental/xdocs/userguide/howto_compositeconfiguration.xml (original) +++ commons/proper/configuration/branches/configuration2_experimental/xdocs/userguide/howto_compositeconfiguration.xml Sat May 23 14:57:42 2009 @@ -58,7 +58,7 @@ Configuration otherProperties = new PropertiesConfiguration(fileToOtherProperties); CompositeConfiguration cc = new CompositeConfiguration(); cc.addConfiguration(otherProperties); -cc.addDefaults(fileToDefaults); +cc.addConfiguration(fileToDefaults); ]]></source> </subsection>