From 52c4488471ed52085a29e173226b3cbd2bf22b20 Mon Sep 17 00:00:00 2001 From: fujimoto kyosuke Date: Sun, 12 Jan 2020 06:49:19 +0000 Subject: [PATCH] html: update URL in comment The comment contained a link that had a file name and ID that no longer existed, so change to the URL of the corresponding part of the latest page. Change-Id: I74e0885aabf470facc39b84035f7a83fef9c6a8e GitHub-Last-Rev: 5681c84d9f1029449da6860c65a1d9a128296e85 GitHub-Pull-Request: golang/go#36514 Reviewed-on: https://go-review.googlesource.com/c/go/+/214181 Run-TryBot: Ian Lance Taylor TryBot-Result: Gobot Gobot Reviewed-by: Ian Lance Taylor --- src/html/escape.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/html/escape.go b/src/html/escape.go index dae404fab1..1dc12873b0 100644 --- a/src/html/escape.go +++ b/src/html/escape.go @@ -12,7 +12,7 @@ import ( // These replacements permit compatibility with old numeric entities that // assumed Windows-1252 encoding. -// http://www.whatwg.org/specs/web-apps/current-work/multipage/tokenization.html#consume-a-character-reference +// https://html.spec.whatwg.org/multipage/parsing.html#numeric-character-reference-end-state var replacementTable = [...]rune{ '\u20AC', // First entry is what 0x80 should be replaced with. '\u0081', -- 2.50.0