Javadoc formatting.
diff --git a/src/main/java/org/apache/commons/csv/CSVRecord.java b/src/main/java/org/apache/commons/csv/CSVRecord.java
index a8cad90..614bb64 100644
--- a/src/main/java/org/apache/commons/csv/CSVRecord.java
+++ b/src/main/java/org/apache/commons/csv/CSVRecord.java
@@ -83,11 +83,13 @@
     /**
      * Returns a value by name.
      *
-     * <p>Note: This requires a field mapping obtained from the original parser.
+     * <p>
+     * Note: This requires a field mapping obtained from the original parser.
      * A check using {@link #isMapped(String)} should be used to determine if a
-     * mapping exists from the provide {@code name} to a field index. In this case an
+     * mapping exists from the provided {@code name} to a field index. In this case an
      * exception will only be thrown if the record does not contain a field corresponding
      * to the mapping, that is the record length is not consistent with the mapping size.
+     * </p>
      *
      * @param name
      *            the name of the column to be retrieved.
@@ -150,8 +152,10 @@
     /**
      * Returns the parser.
      *
-     * <p>Note: The parser is not part of the serialized state of the record. A null check
+     * <p>
+     * Note: The parser is not part of the serialized state of the record. A null check
      * should be used when the record may have originated from a serialized form.
+     * </p>
      *
      * @return the parser.
      * @since 1.7
diff --git a/src/test/java/org/apache/commons/csv/issues/JiraCsv248Test.java b/src/test/java/org/apache/commons/csv/issues/JiraCsv248Test.java
index c39842f..efbe09f 100644
--- a/src/test/java/org/apache/commons/csv/issues/JiraCsv248Test.java
+++ b/src/test/java/org/apache/commons/csv/issues/JiraCsv248Test.java
@@ -31,7 +31,7 @@
 
 public class JiraCsv248Test {
     /**
-     * Test deserialisation of a CSVRecord create using version 1.6.
+     * Test deserialisation of a CSVRecord created using version 1.6.
      *
      * <p>This test asserts that serialization from 1.8 onwards is consistent with
      * previous versions. Serialization was broken in version 1.7.
@@ -77,4 +77,4 @@
     private static InputStream getTestInput() {
         return ClassLoader.getSystemClassLoader().getResourceAsStream("CSV-248/csvRecord.bin");
     }
-}
\ No newline at end of file
+}