summaryrefslogtreecommitdiff
path: root/src/wasm/wasm-validator.cpp
diff options
context:
space:
mode:
authorThomas Lively <tlively@google.com>2024-01-11 18:53:27 -0800
committerGitHub <noreply@github.com>2024-01-11 18:53:27 -0800
commit1db044e9654b3147a8d57cc827892d0dcfdd4b85 (patch)
tree6d64ea2ddb5f4aa0ea52f99cac1c464acb44d123 /src/wasm/wasm-validator.cpp
parentb4dee3dc05834ada8bf94e3e925186bc8b430c30 (diff)
downloadbinaryen-1db044e9654b3147a8d57cc827892d0dcfdd4b85.tar.gz
binaryen-1db044e9654b3147a8d57cc827892d0dcfdd4b85.tar.bz2
binaryen-1db044e9654b3147a8d57cc827892d0dcfdd4b85.zip
[NFC] Fix "initialised" => "initialized" (#6222)
Diffstat (limited to 'src/wasm/wasm-validator.cpp')
-rw-r--r--src/wasm/wasm-validator.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wasm/wasm-validator.cpp b/src/wasm/wasm-validator.cpp
index 9930010a0..3f73a2117 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()),