You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by oh...@apache.org on 2015/05/16 19:44:10 UTC

svn commit: r1679778 - /commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration2/builder/fluent/Configurations.java

Author: oheger
Date: Sat May 16 17:44:09 2015
New Revision: 1679778

URL: http://svn.apache.org/r1679778
Log:
Javadoc error: Incorrect nesting of <p> tags.

Modified:
    commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration2/builder/fluent/Configurations.java

Modified: commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration2/builder/fluent/Configurations.java
URL: http://svn.apache.org/viewvc/commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration2/builder/fluent/Configurations.java?rev=1679778&r1=1679777&r2=1679778&view=diff
==============================================================================
--- commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration2/builder/fluent/Configurations.java (original)
+++ commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration2/builder/fluent/Configurations.java Sat May 16 17:44:09 2015
@@ -47,7 +47,7 @@ import org.apache.commons.configuration2
  * An an example consider the creation of a {@code PropertiesConfiguration}
  * object from a file. Using a builder, code like the following one would have
  * to be written:
- *
+ * </p>
  * <pre>
  * Parameters params = new Parameters();
  * FileBasedConfigurationBuilder&lt;PropertiesConfiguration&gt; builder =
@@ -56,16 +56,16 @@ import org.apache.commons.configuration2
  *                 .setFile(new File(&quot;config.properties&quot;)));
  * PropertiesConfiguration config = builder.getConfiguration();
  * </pre>
- *
+ * <p>
  * With a convenience method of {@code Configurations} the same can be achieved
  * with the following:
- *
+ * </p>
  * <pre>
  * Configurations configurations = new Configurations();
  * PropertiesConfiguration config = configurations.properties(new File(
  *         &quot;config.properties&quot;));
  * </pre>
- *
+ * <p>
  * There are similar methods for constructing builder objects from which
  * configurations can then be obtained.
  * </p>