@@ -38,31 +38,31 @@ public class BinaryCodecTest {
3838
3939 private static final Charset CHARSET_UTF8 = Charsets .UTF_8 ;
4040
41- /** mask with bit zero based index 0 raised */
41+ /** Mask with bit zero- based index 0 raised. */
4242 private static final int BIT_0 = 0x01 ;
4343
44- /** mask with bit zero based index 0 raised */
44+ /** Mask with bit zero- based index 0 raised. */
4545 private static final int BIT_1 = 0x02 ;
4646
47- /** mask with bit zero based index 0 raised */
47+ /** Mask with bit zero- based index 0 raised. */
4848 private static final int BIT_2 = 0x04 ;
4949
50- /** mask with bit zero based index 0 raised */
50+ /** Mask with bit zero- based index 0 raised. */
5151 private static final int BIT_3 = 0x08 ;
5252
53- /** mask with bit zero based index 0 raised */
53+ /** Mask with bit zero- based index 0 raised. */
5454 private static final int BIT_4 = 0x10 ;
5555
56- /** mask with bit zero based index 0 raised */
56+ /** Mask with bit zero- based index 0 raised. */
5757 private static final int BIT_5 = 0x20 ;
5858
59- /** mask with bit zero based index 0 raised */
59+ /** Mask with bit zero- based index 0 raised. */
6060 private static final int BIT_6 = 0x40 ;
6161
62- /** mask with bit zero based index 0 raised */
62+ /** Mask with bit zero- based index 0 raised. */
6363 private static final int BIT_7 = 0x80 ;
6464
65- /** an instance of the binary codec */
65+ /** An instance of the binary codec. */
6666 BinaryCodec instance = null ;
6767
6868 @ Before
0 commit comments