Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion vmhost/vmhooks/generate/eiGenParse.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion wasmer2/wasmer2Instance.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
Expand Down