Skip to content

Commit de39290

Browse files
mydeabillyvg
andauthored
Apply suggestions from code review
Co-authored-by: Billy Vong <[email protected]>
1 parent 61feab0 commit de39290

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/browser-integration-tests/utils/replayHelpers.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,7 @@ export function replayEnvelopeIsCompressed(resOrReq: Request | Response): boolea
322322
// look up the place where the zlib compression header(0x78 0x9c) starts
323323
for (let i = 0; i < envelopeBytes.length; i++) {
324324
if (envelopeBytes[i] === 0x78 && envelopeBytes[i + 1] === 0x9c) {
325-
// We found a zlib-compressed payload - let's decompress it
325+
// We found a zlib-compressed payload
326326
return true;
327327
}
328328
}

0 commit comments

Comments
 (0)