1
0
mirror of https://github.com/golang/go synced 2024-09-30 06:34:29 -06:00

net/http/pprof: fix typo on new index page

s/thread/thead/ as this is Table HEAD and not a thread as indicated by
the closing tag an context this apears in.

Change-Id: I3aa0cc95b96c9a594cb5a49713efa22d67e4990c
Reviewed-on: https://go-review.googlesource.com/112675
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
This commit is contained in:
Ingo Oeser 2018-05-10 19:08:46 +02:00 committed by Brad Fitzpatrick
parent 25f73db0b6
commit 5bd88b028b

View File

@ -319,7 +319,7 @@ var indexTmpl = template.Must(template.New("index").Parse(`<html>
<br>
Types of profiles available:
<table>
<thread><td>Count</td><td>Profile</td></thead>
<thead><td>Count</td><td>Profile</td></thead>
{{range .}}
<tr>
<td>{{.Count}}</td><td><a href={{.Href}}>{{.Name}}</a></td>