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

commit b3c11990fa7604e670c7bdcacd96f4d04a5c1f07
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Fri Dec 1 08:57:31 2023 -0500

    Javadoc
---
 src/main/java/org/apache/commons/validator/Field.java | 2 +-
 src/main/java/org/apache/commons/validator/Var.java   | 8 ++++----
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/src/main/java/org/apache/commons/validator/Field.java 
b/src/main/java/org/apache/commons/validator/Field.java
index 0a1b4f80..c3b4e74b 100644
--- a/src/main/java/org/apache/commons/validator/Field.java
+++ b/src/main/java/org/apache/commons/validator/Field.java
@@ -187,7 +187,7 @@ public class Field implements Cloneable, Serializable {
      * <code>Field</code>.
      * @param name Name of the validation.
      * @param value The Argument's value.
-     * @param jsType The Javascript type.
+     * @param jsType The JavaScript type.
      */
     public void addVar(final String name, final String value, final String 
jsType) {
         this.addVar(new Var(name, value, jsType));
diff --git a/src/main/java/org/apache/commons/validator/Var.java 
b/src/main/java/org/apache/commons/validator/Var.java
index 7977309d..f00761af 100644
--- a/src/main/java/org/apache/commons/validator/Var.java
+++ b/src/main/java/org/apache/commons/validator/Var.java
@@ -78,10 +78,10 @@ public class Var implements Cloneable, Serializable {
 
     /**
      * Constructs a variable with a specified name, value
-     * and Javascript type.
+     * and JavaScript type.
      * @param name Variable name.
      * @param value Variable value.
-     * @param jsType Variable Javascript type.
+     * @param jsType Variable JavaScript type.
      */
     public Var(final String name, final String value, final String jsType) {
         this.name = name;
@@ -114,7 +114,7 @@ public class Var implements Cloneable, Serializable {
 
     /**
      * Gets the JavaScript type of the variable.
-     * @return The Javascript type of the variable.
+     * @return The JavaScript type of the variable.
      */
     public String getJsType() {
         return this.jsType;
@@ -156,7 +156,7 @@ public class Var implements Cloneable, Serializable {
 
     /**
      * Sets the JavaScript type of the variable.
-     * @param jsType The Javascript type of the variable.
+     * @param jsType The JavaScript type of the variable.
      */
     public void setJsType(final String jsType) {
         this.jsType = jsType;

Reply via email to