Skip to content

Commit

Permalink
fixed typo in README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielJDufour committed May 21, 2023
1 parent 17d97ac commit c26c683
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ const numbers = [3, 3, 3, 3, 3, 8, 0, 0];
encode(numbers);
[5, 3, 1, 8, 2, 0]

encode(decoded, { max_run_length: 2 });
[2, 3, 2, 3, 1, 3, 1, 8, 2, 0]

encode(decoded, { chunk: true });
[ [3, 5], [8, 1], [0, 2] ]

encode(decoded, { max_run_length: 2 });
[2, 3, 2, 3, 1, 3, 1, 8, 2, 0]
```

Expand Down

0 comments on commit c26c683

Please sign in to comment.