Javadoc
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 @@
     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 @@
     }
 
     /**
-     * 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