From 8fe73c9f3f6d98580f9b31f9d405b558e0031169 Mon Sep 17 00:00:00 2001 From: Yair Slobodin Date: Wed, 11 Dec 2024 16:33:06 +0200 Subject: [PATCH] typo --- pkg/netset/ipblock.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/netset/ipblock.go b/pkg/netset/ipblock.go index 24c5b80..c618863 100644 --- a/pkg/netset/ipblock.go +++ b/pkg/netset/ipblock.go @@ -153,7 +153,7 @@ func (b *IPBlock) IsSingleIPAddress() bool { } // Smaller returns true if this ipblock is smaller than other ipblock, and false o.w -// smaller means the this.firstIP is smaller than other.firstIP +// smaller == this.firstIP is smaller than other.firstIP // if this.firstIP is equal to other.firstIP, decide by the lastIP func (b *IPBlock) Smaller(other *IPBlock) bool { if b.ipRange.Min() == other.ipRange.Min() {