Skip to content

Commit 5865e24

Browse files
committed
README updates.
1 parent e1d2b76 commit 5865e24

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,8 @@ AsciiCompressor compressor = new SixBitAsciiCompressor();
6565
Each compressor have a set of default supported characters which are defined in fields `DEFAULT_4BIT_CHARSET`, `DEFAULT_5BIT_CHARSET`, and `DEFAULT_6BIT_CHARSET`.
6666
If you need a custom character set, use constructors with parameter `supportedCharset`:
6767
```java
68-
byte[] myCustom4BitCharset = {'!', '"', '#', '$', '%', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '@'}; // Follows ASCII character ordering.
68+
// Follows ASCII character ordering.
69+
byte[] myCustom4BitCharset = {'!', '"', '#', '$', '%', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '@'};
6970
AsciiCompressor compressor = new FourBitAsciiCompressor(myCustom4BitCharset);
7071
```
7172

0 commit comments

Comments
 (0)