LibCrypto: Fix typo in comment
Some checks are pending
CI / macOS, arm64, Sanitizer, Clang (push) Waiting to run
CI / Linux, x86_64, Fuzzers, Clang (push) Waiting to run
CI / Linux, x86_64, Sanitizer, GNU (push) Waiting to run
CI / Linux, x86_64, Sanitizer, Clang (push) Waiting to run
Package the js repl as a binary artifact / Linux, arm64 (push) Waiting to run
Package the js repl as a binary artifact / macOS, arm64 (push) Waiting to run
Package the js repl as a binary artifact / Linux, x86_64 (push) Waiting to run
Run test262 and test-wasm / run_and_update_results (push) Waiting to run
Lint Code / lint (push) Waiting to run
Label PRs with merge conflicts / auto-labeler (push) Waiting to run
Push notes / build (push) Waiting to run

This commit is contained in:
Shivendra Kumar 2025-09-14 12:23:01 +05:30 committed by Tim Ledbetter
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 { } else {
// Otherwise: // Otherwise:
// 1. Perform any key import steps defined by other applicable specifications, passing format, keyData and obtaining key. // 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); return WebIDL::DataError::create(m_realm, "Invalid algorithm"_utf16);
} }