(commons-codec) branch master updated: Javadoc spelling

2023-11-26 Thread ggregory
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-codec.git


The following commit(s) were added to refs/heads/master by this push:
 new 5bbb6699 Javadoc spelling
5bbb6699 is described below

commit 5bbb66994f8e6d04509cbd297c6bf5dc77d328bb
Author: Gary Gregory 
AuthorDate: Sun Nov 26 16:03:07 2023 -0500

Javadoc spelling
---
 src/main/java/org/apache/commons/codec/digest/Md5Crypt.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/main/java/org/apache/commons/codec/digest/Md5Crypt.java 
b/src/main/java/org/apache/commons/codec/digest/Md5Crypt.java
index af4b6a7a..6a365e03 100644
--- a/src/main/java/org/apache/commons/codec/digest/Md5Crypt.java
+++ b/src/main/java/org/apache/commons/codec/digest/Md5Crypt.java
@@ -321,7 +321,7 @@ public class Md5Crypt {
 }
 
 /*
- * Don't leave anything around in vm they could use.
+ * Don't leave anything around in JVM they could use.
  */
 Arrays.fill(finalb, (byte) 0);
 
@@ -384,7 +384,7 @@ public class Md5Crypt {
 B64.b64from24bit((byte) 0, (byte) 0, finalb[11], 2, passwd);
 
 /*
- * Don't leave anything around in vm they could use.
+ * Don't leave anything around in JVM they could use.
  */
 // Is there a better way to do this with the JVM?
 ctx.reset();



(commons-codec) branch master updated: Javadoc spelling

2023-11-26 Thread ggregory
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-codec.git


The following commit(s) were added to refs/heads/master by this push:
 new e616873e Javadoc spelling
e616873e is described below

commit e616873e08e2d335ccbc5599ded74335e4cf2487
Author: Gary Gregory 
AuthorDate: Sun Nov 26 15:46:03 2023 -0500

Javadoc spelling
---
 src/main/java/org/apache/commons/codec/digest/PureJavaCrc32.java  | 2 +-
 src/main/java/org/apache/commons/codec/digest/PureJavaCrc32C.java | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/main/java/org/apache/commons/codec/digest/PureJavaCrc32.java 
b/src/main/java/org/apache/commons/codec/digest/PureJavaCrc32.java
index bed1257e..e50b5f22 100644
--- a/src/main/java/org/apache/commons/codec/digest/PureJavaCrc32.java
+++ b/src/main/java/org/apache/commons/codec/digest/PureJavaCrc32.java
@@ -19,7 +19,7 @@ package org.apache.commons.codec.digest;
 import java.util.zip.Checksum;
 
 /**
- * A pure-java implementation of the CRC32 checksum that uses
+ * A pure-Java implementation of the CRC32 checksum that uses
  * the same polynomial as the built-in native CRC32.
  * 
  * This is to avoid the JNI overhead for certain uses of checksumming
diff --git a/src/main/java/org/apache/commons/codec/digest/PureJavaCrc32C.java 
b/src/main/java/org/apache/commons/codec/digest/PureJavaCrc32C.java
index dbd1e4ad..93cb44b6 100644
--- a/src/main/java/org/apache/commons/codec/digest/PureJavaCrc32C.java
+++ b/src/main/java/org/apache/commons/codec/digest/PureJavaCrc32C.java
@@ -23,7 +23,7 @@ package org.apache.commons.codec.digest;
 import java.util.zip.Checksum;
 
 /**
- * A pure-java implementation of the CRC32 checksum that uses the CRC32-C 
polynomial, the same polynomial used by iSCSI and implemented on many Intel 
chipsets
+ * A pure-Java implementation of the CRC32 checksum that uses the CRC32-C 
polynomial, the same polynomial used by iSCSI and implemented on many Intel 
chipsets
  * supporting SSE 4.2.
  *
  *