Skip to content

Commit 7291d77

Browse files
committed
fix comments
1 parent 574fbfb commit 7291d77

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/CachedKeyDecoder.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ export class CachedKeyDecoder implements KeyDecoder {
7373
this.miss++;
7474

7575
const str = utf8DecodeJs(bytes, inputOffset, byteLength);
76-
// Ensure to copy a slice of bytes because the byte may be NodeJS Buffer and Buffer#slice() returns a reference to its internal ArrayBuffer.
76+
// Ensure to copy a slice of bytes because the bytes may be a NodeJS Buffer and Buffer#slice() returns a reference to its internal ArrayBuffer.
7777
const slicedCopyOfBytes = Uint8Array.prototype.slice.call(bytes, inputOffset, inputOffset + byteLength);
7878
this.store(slicedCopyOfBytes, str);
7979
return str;

0 commit comments

Comments
 (0)