From 8058ac1825a8bc89340e80a477b158edbf768486 Mon Sep 17 00:00:00 2001 From: Thomas Lively Date: Thu, 11 Jan 2024 13:25:55 -0800 Subject: [PATCH] [NFC] Fix "initialised" => "initialized" --- src/wasm/wasm-validator.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wasm/wasm-validator.cpp b/src/wasm/wasm-validator.cpp index 9930010a010..3f73a21178c 100644 --- a/src/wasm/wasm-validator.cpp +++ b/src/wasm/wasm-validator.cpp @@ -3296,7 +3296,7 @@ void FunctionValidator::visitResume(Resume* curr) { shouldBeTrue( curr->sentTypes.size() == curr->handlerBlocks.size(), curr, - "sentTypes cache in Resume instruction has not been initialised"); + "sentTypes cache in Resume instruction has not been initialized"); shouldBeTrue((curr->contType.isContinuation() && curr->contType.getContinuation().type.isSignature()),