aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKanta Ebihara <kantaebihara@gmail.com>2020-02-12 08:17:30 +0900
committerIan Lance Taylor <iant@golang.org>2020-02-12 04:06:30 +0000
commit5ce8005990f77d06f19cf70029353fb911d63d1f (patch)
treee0ea8b47a4c1c6b38fd23a6345842f8581ea01df
parentd0050e2871cf3916d99b11e67a4bf34ef025ec19 (diff)
downloadgo-5ce8005990f77d06f19cf70029353fb911d63d1f.tar.gz
go-5ce8005990f77d06f19cf70029353fb911d63d1f.zip
cmd/go/internal/web: fix a typo
dependenicies -> dependencies Change-Id: I0b8f06c04cf397c6330ffb43ac3ae5c2f7cf3138 Reviewed-on: https://go-review.googlesource.com/c/go/+/219157 Reviewed-by: Ian Lance Taylor <iant@golang.org>
-rw-r--r--src/cmd/go/internal/web/api.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmd/go/internal/web/api.go b/src/cmd/go/internal/web/api.go
index ad99eb2f8c..209ed6861a 100644
--- a/src/cmd/go/internal/web/api.go
+++ b/src/cmd/go/internal/web/api.go
@@ -3,7 +3,7 @@
// license that can be found in the LICENSE file.
// Package web defines minimal helper routines for accessing HTTP/HTTPS
-// resources without requiring external dependenicies on the net package.
+// resources without requiring external dependencies on the net package.
//
// If the cmd_go_bootstrap build tag is present, web avoids the use of the net
// package and returns errors for all network operations.