customport: fix typo in comment

Signed-off-by: Miguel Ángel Jimeno <miguelangel4b@gmail.com>
This commit is contained in:
Miguel Ángel Jimeno 2020-08-25 20:32:02 +02:00
parent 3cc74aabc5
commit 8dd0caa6c9

View File

@ -26,7 +26,7 @@ func (c *CustomPorts) Set(value string) error {
// splits on comma
potentialPorts := strings.Split(value, ",")
// check if port is a single integer value or needs to be expanded futher
// check if port is a single integer value or needs to be expanded further
for _, potentialPort := range potentialPorts {
potentialRange := strings.Split(strings.TrimSpace(potentialPort), "-")
// it's a single port?