summaryrefslogtreecommitdiff
path: root/src/wasm.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/wasm.h')
-rw-r--r--src/wasm.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/wasm.h b/src/wasm.h
index b6e57525f..c4a58f3a4 100644
--- a/src/wasm.h
+++ b/src/wasm.h
@@ -560,10 +560,9 @@ enum BrOnOp {
// Expressions
//
// Note that little is provided in terms of constructors for these. The
-// rationale is that writing new Something(a, b, c, d, e) is not the clearest,
-// and it would be better to write new Something(name=a, leftOperand=b...
-// etc., but C++ lacks named operands, so in asm2wasm etc. you will see things
-// like
+// rationale is that writing `new Something(a, b, c, d, e)` is not the clearest,
+// and it would be better to write new `Something(name=a, leftOperand=b...`
+// etc., but C++ lacks named operands so you will see things like
// auto x = new Something();
// x->name = a;
// x->leftOperand = b;