Skip to content

Commit b16e79e

Browse files
arkeroneaduh95
authored andcommitted
tls: fix typo
`byteLenth` -> `byteLength`. PR-URL: #38129 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Darshan Sen <raisinten@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
1 parent 7869761 commit b16e79e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/_tls_common.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -364,7 +364,7 @@ exports.createSecureContext = function createSecureContext(options) {
364364
if (ticketKeys.byteLength !== 48) {
365365
throw new ERR_INVALID_ARG_VALUE(
366366
'options.ticketKeys',
367-
ticketKeys.byteLenth,
367+
ticketKeys.byteLength,
368368
'must be exactly 48 bytes');
369369
}
370370
c.context.setTicketKeys(ticketKeys);

0 commit comments

Comments
 (0)