From dba302513c242558c6cc6a55e1ed4f8f5ba6ab43 Mon Sep 17 00:00:00 2001
From: Benedikt Ritter
Date: Fri, 28 Mar 2014 10:49:04 +0000
Subject: [PATCH] Fix JavaDoc problems in Conversion
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1582687 13f79535-47bb-0310-9956-ffa450edef68
---
src/main/java/org/apache/commons/lang3/Conversion.java | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
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:
+ *
*
*
binary: an array of booleans
*
byte or byteArray
@@ -40,8 +41,9 @@ import java.util.UUID;
*
hexDigit: a Char containing a hexadecimal digit (lowercase in destination)
*
uuid
*
+ *
* 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".
*