From b3e8784f9258b4d98838d5d2c96e965238503594 Mon Sep 17 00:00:00 2001 From: Shivendra Kumar Date: Sun, 14 Sep 2025 12:23:01 +0530 Subject: [PATCH] LibCrypto: Fix typo in comment --- Libraries/LibWeb/Crypto/CryptoAlgorithms.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Libraries/LibWeb/Crypto/CryptoAlgorithms.cpp b/Libraries/LibWeb/Crypto/CryptoAlgorithms.cpp index 5b7cf9eb273..b701a4e9f2d 100644 --- a/Libraries/LibWeb/Crypto/CryptoAlgorithms.cpp +++ b/Libraries/LibWeb/Crypto/CryptoAlgorithms.cpp @@ -5349,7 +5349,7 @@ WebIDL::ExceptionOr> ECDH::import_key(AlgorithmParams const& } else { // Otherwise: // 1. Perform any key import steps defined by other applicable specifications, passing format, keyData and obtaining key. - // 2. If an error occured or there are no applicable specifications, throw a DataError. + // 2. If an error occurred or there are no applicable specifications, throw a DataError. return WebIDL::DataError::create(m_realm, "Invalid algorithm"_utf16); }