diff options
| -rw-r--r-- | ip_slice.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ip_slice.go b/ip_slice.go index 7dd196f..6ad2e92 100644 --- a/ip_slice.go +++ b/ip_slice.go @@ -74,7 +74,7 @@ func (s *ipSliceValue) String() string { func ipSliceConv(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.IP{}, nil } |
