fix typo in wazero.HostFunctionBuilder.WithFunc documentation (#1262)

Signed-off-by: Achille Roussel <achille.roussel@gmail.com>
This commit is contained in:
Achille
2023-03-20 19:52:12 -07:00
committed by GitHub
parent 0a4ebdf159
commit 57c887113e

View File

@@ -86,7 +86,7 @@ type HostFunctionBuilder interface {
//
// Except for the context.Context and optional api.Module, all parameters
// or result types must map to WebAssembly numeric value types. This means
// uint32, int32, uint64, int32 float32 or float64.
// uint32, int32, uint64, int64, float32 or float64.
//
// api.Module may be specified as the second parameter, usually to access
// memory. This is important because there are only numeric types in Wasm.