diff --git a/src/main/java/org/apache/commons/lang3/Conversion.java b/src/main/java/org/apache/commons/lang3/Conversion.java index 91131ad83..555abc6b9 100644 --- a/src/main/java/org/apache/commons/lang3/Conversion.java +++ b/src/main/java/org/apache/commons/lang3/Conversion.java @@ -26,11 +26,12 @@ import java.util.UUID; * Static methods to convert a type into another, with endianness and bit ordering awareness. *
*
- * The methods names follow a naming rule:
+ * The methods names follow a naming rule:
* {@code
* Source/destination type fields is one of the following: + *
*
* Endianness field: little endian is the default, in this case the field is absent. In case of
- * big endian, the field is "Be". Bit ordering: Lsb0 is the default, in this case the field
+ * big endian, the field is "Be".
Bit ordering: Lsb0 is the default, in this case the field
* is absent. In case of Msb0, the field is "Msb0".
*