Skip to content

Commit 113add5

Browse files
Documentation updates
Feedback from pull request.
1 parent bf91374 commit 113add5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/java/org/owasp/esapi/codecs/abstraction/AbstractCodecCharacterTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
* <br/>
3131
* Sub-classes are expected to provide instances of {@link CodecCharacterTestTuple} to this instance.
3232
* <br/>
33-
* For better test naming output specify {@link CodecCharacterTestTuple#description} and use {@code} @Parameters (name="{0}")},
33+
* For better test naming output specify {@link CodecCharacterTestTuple#description} and use <code> @Parameters (name="{0}")</code>,
3434
* where '0' is the index that the CodecCharacterTestTuple reference appears in the constructor.
3535
*/
3636
@RunWith(Parameterized.class)
@@ -88,7 +88,7 @@ public void testEncode() {
8888
assertEquals(expected, codec.encode(encodeImmune, decodedValue.toString()));
8989
}
9090

91-
/** Checks that decoding the input value yeilds the decodedValue.*/
91+
/** Checks that decoding the input value yields the decodedValue.*/
9292
@Test
9393
public void testDecode() {
9494
assertEquals(decodedValue.toString(), codec.decode(input));

0 commit comments

Comments
 (0)