summaryrefslogtreecommitdiff
path: root/ext/node/polyfills/internal/crypto
diff options
context:
space:
mode:
authorAndreas Deininger <andreas@deininger.net>2024-08-02 13:26:54 +0200
committerGitHub <noreply@github.com>2024-08-02 13:26:54 +0200
commitea121c9a0e162a83beeae62ed9e5a7911877bcbc (patch)
tree595186262a70cbdc22c067a9d5815a51103c25fc /ext/node/polyfills/internal/crypto
parentbcdf600ae40af8880d9c6d8e0c64179de274290f (diff)
docs: fix typos (#24820)
This PR fixes various typos I spotted in the project.
Diffstat (limited to 'ext/node/polyfills/internal/crypto')
-rw-r--r--ext/node/polyfills/internal/crypto/keys.ts2
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),
};