mirror of
https://github.com/golang/go.git
synced 2025-12-08 06:10:04 +00:00
exp/template: fix build
TBR=gri R=gri CC=golang-dev https://golang.org/cl/4815070
This commit is contained in:
parent
71ba47ac9e
commit
33a4da89d3
2 changed files with 3 additions and 3 deletions
|
|
@ -36,7 +36,7 @@ const debugText = `<html>
|
|||
</body>
|
||||
</html>`
|
||||
|
||||
var debug = template.New("RPC debug").MustParse(debugText)
|
||||
var debug = template.Must(template.New("RPC debug").Parse(debugText))
|
||||
|
||||
type debugMethod struct {
|
||||
Type *methodType
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue