From c2cc681880f6db263264cf3b3f2c6cbd67daebc2 Mon Sep 17 00:00:00 2001 From: Ikko Eltociear Ashimine Date: Tue, 13 Feb 2024 21:27:21 +0900 Subject: [PATCH] Fix typo in arpdb.go returnes -> returns --- internal/arpdb/arpdb.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/arpdb/arpdb.go b/internal/arpdb/arpdb.go index 8405e4ba..25667541 100644 --- a/internal/arpdb/arpdb.go +++ b/internal/arpdb/arpdb.go @@ -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) }