diff options
| author | Tomas Aschan <[email protected]> | 2025-08-29 21:59:56 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-08-29 21:59:56 +0200 |
| commit | fd649b20e66a30631ee35bba78164180d02730d4 (patch) | |
| tree | 321b27604470eed0b00615ea41f0f32f9bf8104a /ipnet_slice.go | |
| parent | d66f0ce2a7f887f0ff5f5af48649f3a01b3f0566 (diff) | |
| parent | 1db553c27f5b9952dbb6484ed9999547b9e7dfb2 (diff) | |
Merge branch 'master' into fix-errhelp
Diffstat (limited to 'ipnet_slice.go')
| -rw-r--r-- | ipnet_slice.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ipnet_slice.go b/ipnet_slice.go index 6b541aa..c6e89da 100644 --- a/ipnet_slice.go +++ b/ipnet_slice.go @@ -73,7 +73,7 @@ func (s *ipNetSliceValue) String() string { func ipNetSliceConv(val string) (interface{}, error) { val = strings.Trim(val, "[]") - // Emtpy string would cause a slice with one (empty) entry + // Empty string would cause a slice with one (empty) entry if len(val) == 0 { return []net.IPNet{}, nil } |
