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-dbutils.git
The following commit(s) were added to refs/heads/master by this push: new 17c6592 Javadoc 17c6592 is described below commit 17c6592d90efdec6499a3a251c95fd407afdda8f Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Sat Nov 11 16:12:45 2023 -0500 Javadoc --- src/main/java/org/apache/commons/dbutils/OutParameter.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/apache/commons/dbutils/OutParameter.java b/src/main/java/org/apache/commons/dbutils/OutParameter.java index d28c63e..4a78ad1 100644 --- a/src/main/java/org/apache/commons/dbutils/OutParameter.java +++ b/src/main/java/org/apache/commons/dbutils/OutParameter.java @@ -39,7 +39,7 @@ public class OutParameter<T> { private T value; /** - * Construct an {@code OutParameter} for the given JDBC SQL type and + * Constructs an {@code OutParameter} for the given JDBC SQL type and * Java type. * @param sqlType the JDBC SQL type of the parameter as in * {@code java.sql.Types}. @@ -53,7 +53,7 @@ public class OutParameter<T> { } /** - * Construct an {@code OutParameter} for the given JDBC SQL type and + * Constructs an {@code OutParameter} for the given JDBC SQL type and * Java type and with the given value. The parameter will be treated as an * INOUT parameter if the value is null. * @param sqlType the JDBC SQL type of the parameter as in