From 0ccb6234c3a341ba1197452410dcbdaf86d2eeb9 Mon Sep 17 00:00:00 2001 From: Andrew Gerrand Date: Fri, 4 Oct 2013 09:48:07 +1000 Subject: [PATCH] undo CL 14368043 / 7750fc1a6bd2 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Not the right approach. ««« original CL description go.tools/godoc: reverse reversed redirects Make godoc work again for go spec and memory model doc. TBR=rsc CC=golang-dev https://golang.org/cl/14368043 »»» R=gri CC=golang-dev https://golang.org/cl/14370043 --- godoc/redirect/redirect.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/godoc/redirect/redirect.go b/godoc/redirect/redirect.go index e58771d5..1ad8d12c 100644 --- a/godoc/redirect/redirect.go +++ b/godoc/redirect/redirect.go @@ -98,11 +98,11 @@ var redirects = map[string]string{ // "/ref/mem": "/doc/mem", // "/ref/spec": "/doc/spec", - // In fact, because golang.org pulls some pages from tip, there + // In fact, becuase golang.org pulls some pages from tip, there // are already links on the main golang.org page pointing at - // the non-existent /ref/spec etc URLs. So redirect the other way. - "/ref/mem": "/doc/mem", - "/ref/spec": "/doc/spec", + // the non-existent /doc/spec etc URLs. So redirect the other way. + "/doc/mem": "/ref/mem", + "/doc/spec": "/ref/spec", "/talks": "http://talks.golang.org", "/tour": "http://tour.golang.org",