summaryrefslogtreecommitdiffhomepage
path: root/wasm.html.markdown
diff options
context:
space:
mode:
authorAleksei Trifonov <avrong@avrong.me>2020-04-05 01:12:31 +0300
committerGitHub <noreply@github.com>2020-04-05 01:12:31 +0300
commit3406234ef19735ed033ab171185b9b6e24fccfdb (patch)
treea3d1405f037bf17cfc479582d0c28ca8dd40d695 /wasm.html.markdown
parent1599a765c5dc85184fad683df7baa5ccfe47aafa (diff)
Remove wrong comment
The second comment probably got to the actual expression by mistake. Commented expression is wrong as it should be, but the other one is fine
Diffstat (limited to 'wasm.html.markdown')
-rw-r--r--wasm.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/wasm.html.markdown b/wasm.html.markdown
index aba2084f..81344abe 100644
--- a/wasm.html.markdown
+++ b/wasm.html.markdown
@@ -61,7 +61,7 @@ contributors:
;; We have to use the right data type for each operation:
;; (local.set $mult_result (f32.mul (f32.const 2.0) (f32.const 4.0))) ;; WRONG! mult_result is f64!
- (local.set $mult_result (f64.mul (f64.const 2.0) (f64.const 4.0))) ;; WRONG! mult_result is f64!
+ (local.set $mult_result (f64.mul (f64.const 2.0) (f64.const 4.0)))
;; WebAssembly has some builtin operations, like basic math and bitshifting.
;; Notably, it does not have built in trigonometric functions.