summaryrefslogtreecommitdiff
path: root/libgo/go/net/port.go
diff options
context:
space:
mode:
Diffstat (limited to 'libgo/go/net/port.go')
-rw-r--r--libgo/go/net/port.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/libgo/go/net/port.go b/libgo/go/net/port.go
index 8e1321afa44..32e76286193 100644
--- a/libgo/go/net/port.go
+++ b/libgo/go/net/port.go
@@ -4,12 +4,12 @@
package net
-// parsePort parses service as a decimal interger and returns the
+// parsePort parses service as a decimal integer and returns the
// corresponding value as port. It is the caller's responsibility to
// parse service as a non-decimal integer when needsLookup is true.
//
// Some system resolvers will return a valid port number when given a number
-// over 65536 (see https://github.com/golang/go/issues/11715). Alas, the parser
+// over 65536 (see https://golang.org/issues/11715). Alas, the parser
// can't bail early on numbers > 65536. Therefore reasonably large/small
// numbers are parsed in full and rejected if invalid.
func parsePort(service string) (port int, needsLookup bool) {