Fix type error (#4196)

This commit is contained in:
Bernard Kolobara 2022-01-03 17:12:06 +01:00 committed by GitHub
parent 772f8ba1cd
commit 9f1e178ce8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -42,7 +42,7 @@ contributors:
;; To set them to a value, we can use <type>.const: ;; To set them to a value, we can use <type>.const:
(local.set $int_32 (i32.const 16)) (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_32 (f32.const 3.14))
(local.set $float_64 (f64.const 1.28)) (local.set $float_64 (f64.const 1.28))
) )