From 7aecacdffe6c3403f50f30d89b84e156a1333b3f Mon Sep 17 00:00:00 2001 From: Hank Shen Date: Thu, 18 Jun 2020 13:42:57 +0800 Subject: [PATCH] fix typo Former-commit-id: 181b7b504f22c3510dbeef3d6fbd43af226835e2 --- core/netutil/ip.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/netutil/ip.go b/core/netutil/ip.go index 04ff01fd..c3e69328 100644 --- a/core/netutil/ip.go +++ b/core/netutil/ip.go @@ -13,8 +13,8 @@ https://github.com/kataras/iris/issues/1453 // IPRange is a structure that holds the start and end of a range of IP Addresses. type IPRange struct { - Start net.IP `json:"start" yaml:"Start" toml"Start"` - End net.IP `json:"end" yaml:"End" toml"End"` + Start net.IP `json:"start" yaml:"Start" toml:"Start"` + End net.IP `json:"end" yaml:"End" toml:"End"` } // IPInRange reports whether a given IP Address is within a range given.