aboutsummaryrefslogtreecommitdiff
path: root/config.go
diff options
context:
space:
mode:
Diffstat (limited to 'config.go')
-rw-r--r--config.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/config.go b/config.go
index 37045e9..c40b2bd 100644
--- a/config.go
+++ b/config.go
@@ -9,7 +9,7 @@ import (
yaml "gopkg.in/yaml.v2"
)
-const _defaultGodocServer = "godoc.org"
+const _defaultGodocServer = "pkg.go.dev"
// Config represents the structure of the yaml file
type Config struct {
@@ -27,7 +27,7 @@ type Package struct {
// ensureAlphabetical checks that the packages are listed alphabetically in the configuration.
func ensureAlphabetical(data []byte) bool {
- // A yaml.MapSlice perservers ordering of keys: https://godoc.org/gopkg.in/yaml.v2#MapSlice
+ // A yaml.MapSlice perservers ordering of keys: https://pkg.go.dev/gopkg.in/yaml.v2#MapSlice
var c struct {
Packages yaml.MapSlice `yaml:"packages"`
}