Fix typo in arpdb.go

returnes -> returns
This commit is contained in:
Ikko Eltociear Ashimine 2024-02-13 21:27:21 +09:00 committed by GitHub
parent 2a546aa609
commit c2cc681880
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -32,7 +32,7 @@ type Interface interface {
// Refresh updates the stored data. It must be safe for concurrent use.
Refresh() (err error)
// Neighbors returnes the last set of data reported by ARP. Both the method
// Neighbors returns the last set of data reported by ARP. Both the method
// and it's result must be safe for concurrent use.
Neighbors() (ns []Neighbor)
}