cmd/gc/lex: remove reference to container/vector in comment

R=golang-dev, dsymonds
CC=golang-dev
https://golang.org/cl/4921045
This commit is contained in:
Rob Pike 2011-08-22 14:07:27 +10:00
parent 8bf2ad757b
commit 1696b5fe2a

View File

@ -400,8 +400,8 @@ findpkg(Strlit *name)
}
// local imports should be canonicalized already.
// don't want to see "container/../container/vector"
// as different from "container/vector".
// don't want to see "encoding/../encoding/base64"
// as different from "encoding/base64".
q = mal(name->len+1);
memmove(q, name->s, name->len);
q[name->len] = '\0';