summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorNigel Tao <nigeltao@golang.org>2013-01-31 14:12:43 +1100
committerNigel Tao <nigeltao@golang.org>2013-01-31 14:12:43 +1100
commit67d4dd67d7812fc10e3b71be7b4f7efcba2dbdf2 (patch)
tree11005f774251a02d99bd1eccbd28995c51141128 /src
parentb5a7a8c453c9a41064f9916e852e39ba0e4ae455 (diff)
downloadgo-67d4dd67d7812fc10e3b71be7b4f7efcba2dbdf2.tar.gz
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://codereview.appspot.com/7241053
Diffstat (limited to 'src')
-rw-r--r--src/pkg/exp/cookiejar/jar.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/exp/cookiejar/jar.go b/src/pkg/exp/cookiejar/jar.go
index 2159ec532..2bf3bd89b 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.