Author: britter
Date: Fri Mar 28 10:49:04 2014
New Revision: 1582687
URL: http://svn.apache.org/r1582687
Log:
Fix JavaDoc problems in Conversion
Modified:
commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/Conversion.java
Modified:
commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/Conversion.java
URL:
http://svn.apache.org/viewvc/commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/Conversion.java?rev=1582687&r1=1582686&r2=1582687&view=diff
==============================================================================
---
commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/Conversion.java
(original)
+++
commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/Conversion.java
Fri Mar 28 10:49:04 2014
@@ -26,11 +26,12 @@ import java.util.UUID;
* Static methods to convert a type into another, with endianness and bit
ordering awareness.
* </p>
* <p>
- * The methods names follow a naming rule:</br>
+ * The methods names follow a naming rule:<br>
* {@code <source type>[source endianness][source bit ordering]To<destination
type>[destination endianness][destination bit ordering]}
* </p>
* <p>
* Source/destination type fields is one of the following:
+ * </p>
* <ul>
* <li>binary: an array of booleans</li>
* <li>byte or byteArray</li>
@@ -40,8 +41,9 @@ import java.util.UUID;
* <li>hexDigit: a Char containing a hexadecimal digit (lowercase in
destination)</li>
* <li>uuid</li>
* </ul>
+ * <p>
* Endianness field: little endian is the default, in this case the field is
absent. In case of
- * big endian, the field is "Be".</br> Bit ordering: Lsb0 is the default, in
this case the field
+ * big endian, the field is "Be".<br> Bit ordering: Lsb0 is the default, in
this case the field
* is absent. In case of Msb0, the field is "Msb0".
* </p>
* <p>