1
0
mirror of https://github.com/golang/go synced 2024-11-18 12:54:44 -07:00

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
This commit is contained in:
Robert Griesemer 2013-10-03 16:36:34 -07:00
parent 5785dc19d7
commit 40ede1040a

View File

@ -98,11 +98,11 @@ var redirects = map[string]string{
// "/ref/mem": "/doc/mem",
// "/ref/spec": "/doc/spec",
// In fact, becuase golang.org pulls some pages from tip, there
// In fact, because golang.org pulls some pages from tip, there
// are already links on the main golang.org page pointing at
// the non-existent /doc/spec etc URLs. So redirect the other way.
"/doc/mem": "/ref/mem",
"/doc/spec": "/ref/spec",
// the non-existent /ref/spec etc URLs. So redirect the other way.
"/ref/mem": "/doc/mem",
"/ref/spec": "/doc/spec",
"/talks": "http://talks.golang.org",
"/tour": "http://tour.golang.org",