From: Rob Pike Date: Sat, 20 Aug 2011 23:04:21 +0000 (+1000) Subject: doc/tmpltohtml: update to new template package. X-Git-Tag: weekly.2011-09-01~149 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=1446ffc2658fa42d882be45e6b023e9847e08f49;p=gostls13.git doc/tmpltohtml: update to new template package. Trivial change: just fix the import. R=golang-dev, adg CC=golang-dev https://golang.org/cl/4937043 --- diff --git a/doc/tmpltohtml.go b/doc/tmpltohtml.go index f4d2e2c2c4..4a8d0265fc 100644 --- a/doc/tmpltohtml.go +++ b/doc/tmpltohtml.go @@ -21,7 +21,6 @@ package main import ( - "exp/template" "flag" "fmt" "io/ioutil" @@ -29,6 +28,7 @@ import ( "os" "regexp" "strings" + "template" ) func Usage() {