From 80e2472f87a00c0278da3a94c610ed284a16f7bb Mon Sep 17 00:00:00 2001 From: Rob Pike Date: Mon, 13 Feb 2012 14:34:30 +1100 Subject: [PATCH] godoc: static ids should be #lowercase so they don't collide with names like #Index. Fixes #2970. R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/5655066 --- lib/godoc/package.html | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/lib/godoc/package.html b/lib/godoc/package.html index e0df513d6a..afb0d4ae1f 100644 --- a/lib/godoc/package.html +++ b/lib/godoc/package.html @@ -10,18 +10,18 @@
import "{{html .ImportPath}}"
-
Overview
-
Index
+
Overview
+
Index
{{if $.Dirs}}
Subdirectories
{{end}}
-

Overview

+

Overview

{{comment_html .Doc}} -

Index

+

Index

@@ -65,14 +65,14 @@
{{with .Consts}} -

Constants

+

Constants

{{range .}} {{comment_html .Doc}}
{{node_html .Decl $.FSet}}
{{end}} {{end}} {{with .Vars}} -

Variables

+

Variables

{{range .}} {{comment_html .Doc}}
{{node_html .Decl $.FSet}}
@@ -122,7 +122,7 @@ {{end}} {{with .Bugs}} -

Bugs

+

Bugs

{{range .}} {{comment_html .}} {{end}} @@ -145,7 +145,7 @@ {{with .Dirs}} {{/* DirList entries are numbers and strings - no need for FSet */}} -

Subdirectories

+

Subdirectories

-- 2.50.0