From 05c89edcd3dfa4253477d34d4f6839f3180b2108 Mon Sep 17 00:00:00 2001 From: Alex Brainman Date: Tue, 12 Jul 2011 13:08:22 +1000 Subject: [PATCH] go/build: make Nuke comment say what it does R=rsc CC=golang-dev https://golang.org/cl/4697041 --- src/pkg/go/build/build.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pkg/go/build/build.go b/src/pkg/go/build/build.go index 12a9c20d99..de22a5a65f 100644 --- a/src/pkg/go/build/build.go +++ b/src/pkg/go/build/build.go @@ -182,7 +182,7 @@ func (s *Script) Clean() (err os.Error) { return } -// Clean removes the Script's Intermediate and Output files. +// Nuke removes the Script's Intermediate and Output files. // It tries to remove every file and returns the first error it encounters. func (s *Script) Nuke() (err os.Error) { // Reverse order so that directories get removed after the files they contain.