aboutsummaryrefslogtreecommitdiffstats
path: root/site/main.mjs
diff options
context:
space:
mode:
authorbrian cully <bjc@spork.org>2025-12-30 10:07:53 -0500
committerbrian cully <bjc@spork.org>2025-12-30 10:07:53 -0500
commit0b78d8154e8644f69d5399c276c4c2a6feb4c5b5 (patch)
treec7839f26948cf974d1843c1e5da89de965271cf2 /site/main.mjs
parentb2fe275aa4486cfcb54e8149878402f64b0c84dd (diff)
downloadpolyring-0b78d8154e8644f69d5399c276c4c2a6feb4c5b5.tar.gz
polyring-0b78d8154e8644f69d5399c276c4c2a6feb4c5b5.zip
rename wasm impl to rust
we may have more than one wasm compiler?
Diffstat (limited to 'site/main.mjs')
-rw-r--r--site/main.mjs6
1 files changed, 3 insertions, 3 deletions
diff --git a/site/main.mjs b/site/main.mjs
index 1457958..e1760e9 100644
--- a/site/main.mjs
+++ b/site/main.mjs
@@ -1,8 +1,8 @@
let type = 'pure';
-let alts = ['wasm'];
+let alts = ['rust'];
switch (self.location.search) {
-case '?wasm':
- type = 'wasm';
+case '?rust':
+ type = 'rust';
alts = ['pure'];
break;
}