Skip to content

Commit fecf2af

Browse files
committed
src: fix type name in comment
The comment refers to an exception type that JS land throws on the C++ code's behalf but apparently I changed the JS name before landing the pull request and forgot to update the comment. Refs: nodejs#20816
1 parent d698983 commit fecf2af

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/node_crypto.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6085,7 +6085,7 @@ void Scrypt(const FunctionCallbackInfo<Value>& args) {
60856085
// EVP_PBE_scrypt() does not always put errors on the error stack
60866086
// and therefore ToResult() may or may not return an exception
60876087
// object. Return a sentinel value to inform JS land it should
6088-
// throw an ERR_CRYPTO_SCRYPT_PARAMETER_ERROR on our behalf.
6088+
// throw an ERR_CRYPTO_SCRYPT_INVALID_PARAMETER on our behalf.
60896089
auto result = job->ToResult();
60906090
if (result->IsUndefined()) result = Null(args.GetIsolate());
60916091
return args.GetReturnValue().Set(result);

0 commit comments

Comments
 (0)