Skip to content

Commit e0ac117

Browse files
authored
Feedback from #24073 (#24084)
1 parent 96986d0 commit e0ac117

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/jsifier.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -737,7 +737,7 @@ function(${args}) {
737737
}
738738

739739
if (MODULARIZE == 'instance' && (EXPORT_ALL || EXPORTED_FUNCTIONS.has(mangled)) && !isStub) {
740-
// It MODULARIZE=instance mode mark JS library symbols are exported at
740+
// In MODULARIZE=instance mode mark JS library symbols are exported at
741741
// the point of declaration.
742742
contentText = 'export ' + contentText;
743743
}

src/modules.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -559,7 +559,7 @@ function exportRuntimeSymbols() {
559559
}
560560

561561
function exportLibrarySymbols() {
562-
assert(!MODULARIZE != 'instance');
562+
assert(MODULARIZE != 'instance');
563563
const results = ['// Begin JS library exports'];
564564
for (const ident of librarySymbols) {
565565
if (EXPORT_ALL || EXPORTED_FUNCTIONS.has(ident)) {

src/runtime_init_memory.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
function initMemory() {
1515
#if PTHREADS
16-
if (ENVIRONMENT_IS_PTHREAD) return
16+
if (ENVIRONMENT_IS_PTHREAD) return;
1717
#endif // PTHREADS
1818

1919
#if expectToReceiveOnModule('wasmMemory')

0 commit comments

Comments
 (0)