Skip to content

Commit

Permalink
fix: stray d vs X in controller.js
Browse files Browse the repository at this point in the history
  • Loading branch information
dckc committed Feb 15, 2021
1 parent 005d5fd commit f2f780d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/SwingSet/src/controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ function makeStartXSnap(bundles, { env }) {
for await (const [it, superCode] of Object.entries(bundles)) {
assert(
superCode.moduleFormat === 'getExport',
d`${it} unexpected: ${superCode.moduleFormat}`,
X`${it} unexpected: ${superCode.moduleFormat}`,
);
await worker.evaluate(`(${superCode.source}\n)()`.trim());
}
Expand Down

0 comments on commit f2f780d

Please sign in to comment.