From 6799b773ebbd53c2c6d3d36e5b58e6efd0f4dc80 Mon Sep 17 00:00:00 2001 From: Nigel Tao Date: Thu, 31 Jan 2013 14:12:43 +1100 Subject: [PATCH] exp/cookiejar: update PublicSuffixList doc comment to match the examples at http://publicsuffix.org/. That website previously listed pvt.k12.wy.us, but that was an error, as confirmed by correspondance with submissions@publicsuffix.org, and the website was fixed on 2013-01-23. R=adg CC=dr.volker.dobler, golang-dev https://golang.org/cl/7241053 --- src/pkg/exp/cookiejar/jar.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pkg/exp/cookiejar/jar.go b/src/pkg/exp/cookiejar/jar.go index 2159ec532a..2bf3bd89b7 100644 --- a/src/pkg/exp/cookiejar/jar.go +++ b/src/pkg/exp/cookiejar/jar.go @@ -16,7 +16,7 @@ import ( // PublicSuffixList provides the public suffix of a domain. For example: // - the public suffix of "example.com" is "com", // - the public suffix of "foo1.foo2.foo3.co.uk" is "co.uk", and -// - the public suffix of "bar.pvt.k12.wy.us" is "pvt.k12.wy.us". +// - the public suffix of "bar.pvt.k12.ma.us" is "pvt.k12.ma.us". // // Implementations of PublicSuffixList must be safe for concurrent use by // multiple goroutines. -- 2.48.1