summaryrefslogtreecommitdiffhomepage
path: root/wasm.html.markdown
diff options
context:
space:
mode:
authorBernard Kolobara <bernard.kolobara@gmail.com>2022-01-03 17:12:06 +0100
committerGitHub <noreply@github.com>2022-01-04 00:12:06 +0800
commit9f1e178ce898cd6ffd1e87bfbc66999071f7a098 (patch)
treefc73ed16a3294289d9d2f386feaaf112db9b7fde /wasm.html.markdown
parent772f8ba1cdabf85e807d82c123caebe8e4851605 (diff)
Fix type error (#4196)
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 81344abe..4de7107f 100644
--- a/wasm.html.markdown
+++ b/wasm.html.markdown
@@ -42,7 +42,7 @@ contributors:
;; To set them to a value, we can use <type>.const:
(local.set $int_32 (i32.const 16))
- (local.set $int_32 (i64.const 128))
+ (local.set $int_64 (i64.const 128))
(local.set $float_32 (f32.const 3.14))
(local.set $float_64 (f64.const 1.28))
)