Skip to content

Commit

Permalink
fix misspell (#197)
Browse files Browse the repository at this point in the history
  • Loading branch information
dvrkps authored and eparis committed Dec 23, 2018
1 parent 916c5bf commit 24fa697
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ip_slice.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down

0 comments on commit 24fa697

Please sign in to comment.