diff options
Diffstat (limited to 'ext/node/polyfills/internal/crypto')
-rw-r--r-- | ext/node/polyfills/internal/crypto/keys.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/node/polyfills/internal/crypto/keys.ts b/ext/node/polyfills/internal/crypto/keys.ts index ca22e12c6..26cd86b44 100644 --- a/ext/node/polyfills/internal/crypto/keys.ts +++ b/ext/node/polyfills/internal/crypto/keys.ts @@ -234,7 +234,7 @@ export function prepareAsymmetricKey(key) { return { format: "pem", data: getArrayBufferOrView(key, "key") }; } else if (isKeyObject(key)) { return { - // Assumes that assymetric keys are stored as PEM. + // Assumes that asymmetric keys are stored as PEM. format: "pem", data: getKeyMaterial(key), }; |