LibCrypto: Fix typo in comment

This commit is contained in:
Shivendra Kumar
2025-09-14 12:23:01 +05:30
committed by Tim Ledbetter
parent 40792aa85d
commit b3e8784f92
Notes: github-actions[bot] 2025-09-14 09:46:35 +00:00

View File

@@ -5349,7 +5349,7 @@ WebIDL::ExceptionOr<GC::Ref<CryptoKey>> 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);
}