Skip to content

Commit

Permalink
Fixed some typos.
Browse files Browse the repository at this point in the history
  • Loading branch information
MeltyPlayer committed Dec 1, 2024
1 parent 09d20d4 commit 4afa7db
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace level5.decompression;

public class Level5Decompressor : BIArrayToArrayDecompressor {
public class Level5Decompressor : BArrayToArrayDecompressor {
public override bool TryDecompress(byte[] src, out byte[] dst) {
int tableType = (src[0] & 0xFF);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

namespace level5.decompression;

public class ZlibArrayToArrayDecompressor : BIArrayToArrayDecompressor {
public class ZlibArrayToArrayDecompressor : BArrayToArrayDecompressor {
public override bool TryDecompress(byte[] src, out byte[] dst) {
var b = src;
if (b.Length < 6) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

namespace visceral.decompression;

public class RefPackArrayToArrayDecompressor : BIArrayToArrayDecompressor {
public class RefPackArrayToArrayDecompressor : BArrayToArrayDecompressor {
public override bool TryDecompress(byte[] inData, out byte[] outData) {
using var input = new MemoryStream(inData);
Span<byte> dummy = stackalloc byte[4];
Expand Down

0 comments on commit 4afa7db

Please sign in to comment.