diff --git a/vmhost/vmhooks/generate/eiGenParse.go b/vmhost/vmhooks/generate/eiGenParse.go index 3ac99ba80..b26f6a468 100644 --- a/vmhost/vmhooks/generate/eiGenParse.go +++ b/vmhost/vmhooks/generate/eiGenParse.go @@ -70,7 +70,7 @@ func extractEIFunctionResult(decl *ast.FuncDecl) (*EIFunctionResult, error) { } } -// isInterfaceMethod looks in the comments to determine if to take method into consideration or not +// isEIInterfaceMethod looks in the comments to determine if to take method into consideration or not func isEIInterfaceMethod(decl *ast.FuncDecl) bool { if decl.Doc == nil { return false diff --git a/wasmer2/wasmer2Instance.go b/wasmer2/wasmer2Instance.go index f373e799b..edec6c1fd 100644 --- a/wasmer2/wasmer2Instance.go +++ b/wasmer2/wasmer2Instance.go @@ -214,7 +214,7 @@ func (instance *Wasmer2Instance) MemDump() []byte { return instance.memory.Data() } -// Id returns an identifier for the instance, unique at runtime +// ID returns an identifier for the instance, unique at runtime func (instance *Wasmer2Instance) ID() string { return fmt.Sprintf("%p", instance.cgoInstance) }