summaryrefslogtreecommitdiff
path: root/src/binary-reader-interpreter.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/binary-reader-interpreter.c')
-rw-r--r--src/binary-reader-interpreter.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/binary-reader-interpreter.c b/src/binary-reader-interpreter.c
index 32fcc6a3..bfbb9cc5 100644
--- a/src/binary-reader-interpreter.c
+++ b/src/binary-reader-interpreter.c
@@ -217,7 +217,7 @@ static uint32_t translate_global_index_to_env(Context* ctx,
static uint32_t translate_defined_global_index_to_env(Context* ctx,
uint32_t global_index) {
- /* all globaltion imports are first, so skip over those */
+ /* all global imports are first, so skip over those */
global_index += ctx->num_global_imports;
assert(global_index < ctx->global_index_mapping.size);
return ctx->global_index_mapping.data[global_index];