Javadoc

Format tweaks
diff --git a/src/main/java/org/apache/commons/dbutils/BaseResultSetHandler.java b/src/main/java/org/apache/commons/dbutils/BaseResultSetHandler.java
index 68ff351..959a541 100644
--- a/src/main/java/org/apache/commons/dbutils/BaseResultSetHandler.java
+++ b/src/main/java/org/apache/commons/dbutils/BaseResultSetHandler.java
@@ -40,14 +40,14 @@
 
 /**
  * Extensions of this class convert ResultSets into other objects.
- *
- * According to the <i>DRY</i> 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>
+ * According to the <i>DRY</i> 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!
- *
+ * </p>
+ * 
  * @param <T> the target type the input ResultSet will be converted to.
  * @since 1.6
  */
@@ -59,8 +59,8 @@
     private ResultSet resultSet;
 
     /**
-     * TODO.
-A     */
+     * TODO. A
+     */
     protected final boolean absolute(final int row) throws SQLException {
         return resultSet.absolute(row);
     }