This is an automated email from the ASF dual-hosted git repository.
ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-lang.git
The following commit(s) were added to refs/heads/master by this push:
new a71a79e54 Javadoc spelling
a71a79e54 is described below
commit a71a79e54cfc7ad6beb0f107c54aebbb52c473b3
Author: Gary Gregory <[email protected]>
AuthorDate: Thu Dec 21 17:09:50 2023 -0500
Javadoc spelling
---
src/main/java/org/apache/commons/lang3/Conversion.java | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/src/main/java/org/apache/commons/lang3/Conversion.java
b/src/main/java/org/apache/commons/lang3/Conversion.java
index c9723dbd3..6d261f97f 100644
--- a/src/main/java/org/apache/commons/lang3/Conversion.java
+++ b/src/main/java/org/apache/commons/lang3/Conversion.java
@@ -39,11 +39,11 @@ import java.util.UUID;
* </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>
- * Example: intBeMsb0ToHex convert an int with big endian byte order and Msb0
bit order into its
+ * Example: intBeMsb0ToHex convert an int with big-endian byte order and Msb0
bit order into its
* hexadecimal string representation
* </p>
* <p>
@@ -79,7 +79,7 @@ public class Conversion {
private static final boolean[] FFFF = {false, false, false, false};
/**
- * Converts the first 4 bits of a binary (represented as boolean array) in
big endian Msb0
+ * Converts the first 4 bits of a binary (represented as boolean array) in
big-endian Msb0
* bit ordering to a hexadecimal digit.
*
* <p>
@@ -97,7 +97,7 @@ public class Conversion {
}
/**
- * Converts a binary (represented as boolean array) in big endian Msb0 bit
ordering to a
+ * Converts a binary (represented as boolean array) in big-endian Msb0 bit
ordering to a
* hexadecimal digit.
*
* <p>