diff options
author | Thomas Lively <tlively@google.com> | 2024-01-11 18:53:27 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-11 18:53:27 -0800 |
commit | 1db044e9654b3147a8d57cc827892d0dcfdd4b85 (patch) | |
tree | 6d64ea2ddb5f4aa0ea52f99cac1c464acb44d123 /src/wasm/wasm-validator.cpp | |
parent | b4dee3dc05834ada8bf94e3e925186bc8b430c30 (diff) | |
download | binaryen-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.cpp | 2 |
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()), |