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:38:11 UTC

svn commit: r1679764 - /commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration2/PropertiesConfiguration.java

Author: oheger
Date: Sat May 16 17:38:10 2015
New Revision: 1679764

URL: http://svn.apache.org/r1679764
Log:
Javadoc errors: Invalid usage of '<' and '>', incorrect nesting of <p> tags.

Modified:
    commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration2/PropertiesConfiguration.java

Modified: commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration2/PropertiesConfiguration.java
URL: http://svn.apache.org/viewvc/commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration2/PropertiesConfiguration.java?rev=1679764&r1=1679763&r2=1679764&view=diff
==============================================================================
--- commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration2/PropertiesConfiguration.java (original)
+++ commons/proper/configuration/trunk/src/main/java/org/apache/commons/configuration2/PropertiesConfiguration.java Sat May 16 17:38:10 2015
@@ -63,7 +63,7 @@ import org.apache.commons.lang3.text.tra
  *
  * <ul>
  *  <li>
- *   Each property has the syntax <code>key &lt;separator> value</code>. The
+ *   Each property has the syntax <code>key &lt;separator&gt; value</code>. The
  *   separators accepted are {@code '='}, {@code ':'} and any white
  *   space character. Examples:
  * <pre>
@@ -136,9 +136,9 @@ import org.apache.commons.lang3.text.tra
  *  </li>
  * </ul>
  *
- * <p>Here is an example of a valid extended properties file:
+ * <p>Here is an example of a valid extended properties file:</p>
  *
- * <p><pre>
+ * <pre>
  *      # lines starting with # are comments
  *
  *      # This is the simplest property
@@ -286,7 +286,7 @@ public class PropertiesConfiguration ext
     }
 
     /**
-     * Controls whether additional files can be loaded by the include = <xxx>
+     * Controls whether additional files can be loaded by the {@code include = <xxx>}
      * statement or not. This is <b>true</b> per default.
      *
      * @param includesAllowed True if Includes are allowed.