From cc1354cc1423e2e28548ead50132f89b73229b34 Mon Sep 17 00:00:00 2001 From: Daniel Bevenius Date: Thu, 2 Jul 2020 12:51:00 +0200 Subject: [PATCH] src: fix minor comment typo in KeyObjectData --- src/node_crypto.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/node_crypto.h b/src/node_crypto.h index a61089f0f131c0..63468e4f18dad1 100644 --- a/src/node_crypto.h +++ b/src/node_crypto.h @@ -420,7 +420,7 @@ class KeyObjectData { KeyType GetKeyType() const; // These functions allow unprotected access to the raw key material and should - // only be used to implement cryptograohic operations requiring the key. + // only be used to implement cryptographic operations requiring the key. ManagedEVPPKey GetAsymmetricKey() const; const char* GetSymmetricKey() const; size_t GetSymmetricKeySize() const;