diff options
author | Rob Pike <r@golang.org> | 2011-11-08 15:38:47 -0800 |
---|---|---|
committer | Rob Pike <r@golang.org> | 2011-11-08 15:38:47 -0800 |
commit | ae8d912e3d110735b9fbfa2b1b11a20eae01d11b (patch) | |
tree | f512d24a10314c44da57a0cda4a368e3d1f276c0 /src/pkg/html/template/clone.go | |
parent | 394c9152c957a1e4ce16806e4cd4026c6795969e (diff) | |
download | go-ae8d912e3d110735b9fbfa2b1b11a20eae01d11b.tar.gz |
renaming_1: hand-edited files for go 1 renaming
This contains the files that required handiwork, mostly
Makefiles with updated TARGs, plus the two packages
with modified package names.
html/template/doc.go needs a separate edit pass.
test/fixedbugs/bug358.go is not legal go so gofix fails on it.
R=rsc
CC=golang-dev
http://codereview.appspot.com/5340050
Diffstat (limited to 'src/pkg/html/template/clone.go')
-rw-r--r-- | src/pkg/html/template/clone.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pkg/html/template/clone.go b/src/pkg/html/template/clone.go index 803a64de1..d0d8ea467 100644 --- a/src/pkg/html/template/clone.go +++ b/src/pkg/html/template/clone.go @@ -2,10 +2,10 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -package html +package template import ( - "template/parse" + "text/template/parse" ) // clone clones a template Node. |