diff options
| author | Rob Pike <r@golang.org> | 2011-10-11 16:41:48 -0700 |
|---|---|---|
| committer | Rob Pike <r@golang.org> | 2011-10-11 16:41:48 -0700 |
| commit | f4cb96b4380efa8e78431124dabb6d654f05b705 (patch) | |
| tree | 9ef9dc7eb1f2f65fd5317ff9a1efb51d8370ccb0 /src/cmd/goinstall | |
| parent | 059c68bf0cccea85bea19c44c15d7fec9e9cbd21 (diff) | |
| download | go-f4cb96b4380efa8e78431124dabb6d654f05b705.tar.xz | |
container/vector: delete
Slices are better:
http://code.google.com/p/go-wiki/wiki/SliceTricks
R=golang-dev, bradfitz, dsymonds
CC=golang-dev
https://golang.org/cl/5248060
Diffstat (limited to 'src/cmd/goinstall')
| -rw-r--r-- | src/cmd/goinstall/main.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmd/goinstall/main.go b/src/cmd/goinstall/main.go index 4782663572..91c8ad4f76 100644 --- a/src/cmd/goinstall/main.go +++ b/src/cmd/goinstall/main.go @@ -292,7 +292,7 @@ func install(pkg, parent string) { } } -// Is this a standard package path? strings container/vector etc. +// Is this a standard package path? strings container/list etc. // Assume that if the first element has a dot, it's a domain name // and is not the standard package path. func isStandardPath(s string) bool { |
