aboutsummaryrefslogtreecommitdiff
path: root/AstSemantics.md
diff options
context:
space:
mode:
Diffstat (limited to 'AstSemantics.md')
-rw-r--r--AstSemantics.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/AstSemantics.md b/AstSemantics.md
index ee16571..2adb7b8 100644
--- a/AstSemantics.md
+++ b/AstSemantics.md
@@ -248,7 +248,7 @@ immediate use. The following primitives provide AST nodes that express
control flow and thus allow more opportunities to build bigger expression trees
and further reduce `SetLocal`/`GetLocal` usage (which constitute 30-40% of total
bytes in the polyfill prototype). Additionally, these primitives are useful
-building blocks for WebAssembly-generators (including the asm.js polyfill).
+building blocks for WebAssembly-generators (including the JavaScript polyfill).
* Comma - evaluate and ignore the result of the first operand, evaluate and return the second operand
* Conditional - basically ternary ?: operator