Fix spelling Web Assembly -> WebAssembly

This commit is contained in:
Simon Warta
2021-01-03 22:01:26 +01:00
parent 82e9c0c18f
commit 010f5fb597
5 changed files with 5 additions and 5 deletions

View File

@@ -6,7 +6,7 @@
static bool host_print_called = false;
// Host function that will be imported into the Web Assembly Instance
// Host function that will be imported into the WebAssembly Instance
void host_print(const wasmer_instance_context_t *ctx, int32_t ptr, int32_t len)
{
host_print_called = true;

View File

@@ -6,7 +6,7 @@
bool static print_str_called = false;
// Host function that will be imported into the Web Assembly Instance
// Host function that will be imported into the WebAssembly Instance
void print_str(const wasmer_instance_context_t *ctx, int32_t ptr, int32_t len)
{
print_str_called = true;

View File

@@ -6,7 +6,7 @@
bool static print_str_called = false;
// Host function that will be imported into the Web Assembly Instance
// Host function that will be imported into the WebAssembly Instance
void print_str(const wasmer_instance_context_t *ctx, int32_t ptr, int32_t len)
{
print_str_called = true;

View File

@@ -6,7 +6,7 @@
static bool host_print_called = false;
// Host function that will be imported into the Web Assembly Instance
// Host function that will be imported into the WebAssembly Instance
void host_print(const wasmer_instance_context_t *ctx, int32_t ptr, int32_t len)
{
host_print_called = true;

View File

@@ -1,4 +1,4 @@
;; Web Assembly SIMD-related type conversion tests
;; WebAssembly SIMD-related type conversion tests
(module
;; Floating point to integer with saturation