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-net.git


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

commit 5503d492bff45c77ce649d23e041f0bd274905cd
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Mon Jan 27 11:06:30 2025 -0500

    Normalize spelling
---
 src/main/java/org/apache/commons/net/util/KeyManagerUtils.java | 8 ++++----
 src/test/java/org/apache/commons/net/tftp/TFTPServer.java      | 4 ++--
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/src/main/java/org/apache/commons/net/util/KeyManagerUtils.java 
b/src/main/java/org/apache/commons/net/util/KeyManagerUtils.java
index 6afd5f08..9bddd96c 100644
--- a/src/main/java/org/apache/commons/net/util/KeyManagerUtils.java
+++ b/src/main/java/org/apache/commons/net/util/KeyManagerUtils.java
@@ -144,7 +144,7 @@ public final class KeyManagerUtils {
      *
      * @param storePath the path to the keyStore
      * @param storePass the keyStore password
-     * @return the customised KeyManager
+     * @return the customized KeyManager
      * @throws IOException              if there is a problem creating the 
keystore
      * @throws GeneralSecurityException if there is a problem creating the 
keystore
      */
@@ -159,7 +159,7 @@ public final class KeyManagerUtils {
      * @param storePath the path to the keyStore
      * @param storePass the keyStore password
      * @param keyAlias  the alias of the key to use, may be {@code null} in 
which case the first key entry alias is used
-     * @return the customised KeyManager
+     * @return the customized KeyManager
      * @throws IOException              if there is a problem creating the 
keystore
      * @throws GeneralSecurityException if there is a problem creating the 
keystore
      */
@@ -174,7 +174,7 @@ public final class KeyManagerUtils {
      * @param ks       the keystore to use
      * @param keyAlias the alias of the key to use, may be {@code null} in 
which case the first key entry alias is used
      * @param keyPass  the password of the key to use
-     * @return the customised KeyManager
+     * @return the customized KeyManager
      * @throws GeneralSecurityException if there is a problem creating the 
keystore
      */
     public static KeyManager createClientKeyManager(final KeyStore ks, final 
String keyAlias, final String keyPass) throws GeneralSecurityException {
@@ -190,7 +190,7 @@ public final class KeyManagerUtils {
      * @param storePass the keyStore password
      * @param keyAlias  the alias of the key to use, may be {@code null} in 
which case the first key entry alias is used
      * @param keyPass   the password of the key to use
-     * @return the customised KeyManager
+     * @return the customized KeyManager
      * @throws GeneralSecurityException if there is a problem creating the 
keystore
      * @throws IOException              if there is a problem creating the 
keystore
      */
diff --git a/src/test/java/org/apache/commons/net/tftp/TFTPServer.java 
b/src/test/java/org/apache/commons/net/tftp/TFTPServer.java
index cab22615..d17a0a5f 100644
--- a/src/test/java/org/apache/commons/net/tftp/TFTPServer.java
+++ b/src/test/java/org/apache/commons/net/tftp/TFTPServer.java
@@ -686,7 +686,7 @@ public class TFTPServer implements Runnable, AutoCloseable {
     }
 
     /*
-     * Allow test code to customise the TFTP instance
+     * Allow test code to customize the TFTP instance
      */
     TFTP newTFTP() {
         return new TFTP();
@@ -723,7 +723,7 @@ public class TFTPServer implements Runnable, AutoCloseable {
     }
 
     /*
-     * Also allow customisation of sending data/ack so can generate errors if 
needed
+     * Also allow customization of sending data/ack so can generate errors if 
needed
      */
     void sendData(final TFTP tftp, final TFTPPacket data) throws IOException {
         tftp.bufferedSend(data);

Reply via email to