summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorMax Schumacher <maximilianbschumacher@gmail.com>2020-04-09 16:49:07 +0200
committerGitHub <noreply@github.com>2020-04-09 16:49:07 +0200
commit1f188c4b53c9baf6ccd88fefbc9011ec2c680998 (patch)
treebe3c3ccd083f0d69c196b92c0129069c92bfbc79
parent91f1dfe656b624c468e052d3d383aefac3069d48 (diff)
parent3406234ef19735ed033ab171185b9b6e24fccfdb (diff)
Merge pull request #3898 from avrong/patch-1
[wasm/en] Remove wrong comment
-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.