From: Alex Brainman Date: Tue, 12 Jul 2011 03:08:22 +0000 (+1000) Subject: go/build: make Nuke comment say what it does X-Git-Tag: weekly.2011-07-19~122 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=05c89edcd3dfa4253477d34d4f6839f3180b2108;p=gostls13.git go/build: make Nuke comment say what it does R=rsc CC=golang-dev https://golang.org/cl/4697041 --- 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.