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 3814cd5  Javadoc
3814cd5 is described below

commit 3814cd593af0a8355506e7c9dc5ef0f1a2dd834b
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Sun Jul 21 11:30:24 2024 -0400

    Javadoc
    
    Use HTML 'em' tag instead of 'i' tag
---
 src/main/java/org/apache/commons/dbutils/BaseResultSetHandler.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/main/java/org/apache/commons/dbutils/BaseResultSetHandler.java 
b/src/main/java/org/apache/commons/dbutils/BaseResultSetHandler.java
index 95703a2..326cd82 100644
--- a/src/main/java/org/apache/commons/dbutils/BaseResultSetHandler.java
+++ b/src/main/java/org/apache/commons/dbutils/BaseResultSetHandler.java
@@ -41,11 +41,11 @@ import java.util.Map;
 /**
  * Extensions of this class convert ResultSets into other objects.
  * <p>
- * According to the <i>DRY</i> principle (Don't Repeat Yourself), repeating 
{@code resultSet} variable inside the {@link ResultSetHandler#handle(ResultSet)}
+ * According to the <em>DRY</em> principle (Don't Repeat Yourself), repeating 
{@code resultSet} variable inside the {@link ResultSetHandler#handle(ResultSet)}
  * over and over for each iteration can get a little tedious, {@code 
AbstractResultSetHandler} implicitly gives users access to {@code ResultSet}'s 
methods.
  * </p>
  * <p>
- * <b>NOTE</b> This class is <i>NOT</i> thread safe!
+ * <b>NOTE</b> This class is <em>NOT</em> thread safe!
  * </p>
  *
  * @param <T> the target type the input ResultSet will be converted to.

Reply via email to