From 6a082708bf3bbd34b0fc6c87e0350b40b2f3801e Mon Sep 17 00:00:00 2001 From: Brandon Philips Date: Thu, 6 Feb 2020 10:48:01 -0800 Subject: [PATCH] handler: use pkg.go.dev instead of golang.org (#33) golang.org now has a warning to use pkg.go.dev instead. Use the new URL. --- handler.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/handler.go b/handler.go index 8b7738d..c37c5a0 100644 --- a/handler.go +++ b/handler.go @@ -152,7 +152,7 @@ var indexTmpl = template.Must(template.New("index").Parse(`

{{.Host}}

`)) @@ -163,10 +163,10 @@ var vanityTmpl = template.Must(template.New("vanity").Parse(` - + -Nothing to see here; see the package on godoc. +Nothing to see here; see the package on pkg.go.dev. `))