summaryrefslogtreecommitdiff
path: root/src/wasm/wasm-emscripten.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/wasm/wasm-emscripten.cpp')
-rw-r--r--src/wasm/wasm-emscripten.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wasm/wasm-emscripten.cpp b/src/wasm/wasm-emscripten.cpp
index 580510ecb..7b0df6827 100644
--- a/src/wasm/wasm-emscripten.cpp
+++ b/src/wasm/wasm-emscripten.cpp
@@ -605,7 +605,7 @@ struct FixInvokeFunctionNamesWalker : public PostWalker<FixInvokeFunctionNamesWa
assert(importRenames.count(curr->name) == 0);
importRenames[curr->name] = newname;
- // Either rename of remove the existing import
+ // Either rename or remove the existing import
if (wasm.getImportOrNull(newname) || !newImports.insert(newname).second) {
toRemove.push_back(curr->name);
} else {