mirror of
https://github.com/golang/go.git
synced 2025-12-08 06:10:04 +00:00
cmd, go: fix some typos
Change-Id: I0fd54ae5294eb4ef30cdef05adb8825f69077b14
GitHub-Last-Rev: ccfa48cbe4
GitHub-Pull-Request: golang/go#70823
Reviewed-on: https://go-review.googlesource.com/c/go/+/635915
Reviewed-by: Ian Lance Taylor <iant@google.com>
Reviewed-by: Robert Griesemer <gri@google.com>
Auto-Submit: Ian Lance Taylor <iant@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
This commit is contained in:
parent
b057b8872d
commit
8790372a8d
5 changed files with 6 additions and 6 deletions
|
|
@ -56,7 +56,7 @@ The tests are in:
|
||||||
Tests are .go files annotated with `/* ERROR "msg" */` or `/* ERRORx "msg" */`
|
Tests are .go files annotated with `/* ERROR "msg" */` or `/* ERRORx "msg" */`
|
||||||
comments (or the respective line comment form).
|
comments (or the respective line comment form).
|
||||||
For each such error comment, typechecking the respective file is expected to
|
For each such error comment, typechecking the respective file is expected to
|
||||||
report an error at the position of the syntactic token _immediately preceeding_
|
report an error at the position of the syntactic token _immediately preceding_
|
||||||
the comment.
|
the comment.
|
||||||
For `ERROR`, the `"msg"` string must be a substring of the error message
|
For `ERROR`, the `"msg"` string must be a substring of the error message
|
||||||
reported by the typechecker;
|
reported by the typechecker;
|
||||||
|
|
|
||||||
|
|
@ -174,7 +174,7 @@ func (check *Checker) collectRecv(rparam *syntax.Field, scopePos syntax.Pos) (*V
|
||||||
} else {
|
} else {
|
||||||
// If there are type parameters, rbase must denote a generic base type.
|
// If there are type parameters, rbase must denote a generic base type.
|
||||||
// Important: rbase must be resolved before declaring any receiver type
|
// Important: rbase must be resolved before declaring any receiver type
|
||||||
// parameters (wich may have the same name, see below).
|
// parameters (which may have the same name, see below).
|
||||||
var baseType *Named // nil if not valid
|
var baseType *Named // nil if not valid
|
||||||
var cause string
|
var cause string
|
||||||
if t := check.genericType(rbase, &cause); isValid(t) {
|
if t := check.genericType(rbase, &cause); isValid(t) {
|
||||||
|
|
|
||||||
|
|
@ -51,7 +51,7 @@ go version -m example$GOEXE
|
||||||
stdout '\s+mod\s+example\s+v1.0.1\s+'
|
stdout '\s+mod\s+example\s+v1.0.1\s+'
|
||||||
rm example$GOEXE
|
rm example$GOEXE
|
||||||
|
|
||||||
# Use tag+dirty when there are uncomitted changes present.
|
# Use tag+dirty when there are uncommitted changes present.
|
||||||
cp $WORK/copy/README $WORK/repo/README
|
cp $WORK/copy/README $WORK/repo/README
|
||||||
go build
|
go build
|
||||||
go version -m example$GOEXE
|
go version -m example$GOEXE
|
||||||
|
|
@ -82,7 +82,7 @@ go version -m example$GOEXE
|
||||||
stdout '\s+mod\s+example\s+v1.0.3-0.20220719150702-deaeab06f7fe\s+'
|
stdout '\s+mod\s+example\s+v1.0.3-0.20220719150702-deaeab06f7fe\s+'
|
||||||
rm example$GOEXE
|
rm example$GOEXE
|
||||||
|
|
||||||
# Use pseudo+dirty when uncomitted changes are present.
|
# Use pseudo+dirty when uncommitted changes are present.
|
||||||
mv README2 README3
|
mv README2 README3
|
||||||
go build
|
go build
|
||||||
go version -m example$GOEXE
|
go version -m example$GOEXE
|
||||||
|
|
|
||||||
|
|
@ -108,7 +108,7 @@ func TestVet(t *testing.T) {
|
||||||
// is a no-op for files whose version >= go1.22, so we use a
|
// is a no-op for files whose version >= go1.22, so we use a
|
||||||
// go.mod file in the rangeloop directory to "downgrade".
|
// go.mod file in the rangeloop directory to "downgrade".
|
||||||
//
|
//
|
||||||
// TOOD(adonovan): delete when go1.21 goes away.
|
// TODO(adonovan): delete when go1.21 goes away.
|
||||||
t.Run("loopclosure", func(t *testing.T) {
|
t.Run("loopclosure", func(t *testing.T) {
|
||||||
cmd := testenv.Command(t, testenv.GoToolPath(t), "vet", "-vettool="+vetPath(t), ".")
|
cmd := testenv.Command(t, testenv.GoToolPath(t), "vet", "-vettool="+vetPath(t), ".")
|
||||||
cmd.Env = append(os.Environ(), "GOWORK=off")
|
cmd.Env = append(os.Environ(), "GOWORK=off")
|
||||||
|
|
|
||||||
|
|
@ -195,7 +195,7 @@ func (check *Checker) collectRecv(rparam *ast.Field, scopePos token.Pos) (*Var,
|
||||||
} else {
|
} else {
|
||||||
// If there are type parameters, rbase must denote a generic base type.
|
// If there are type parameters, rbase must denote a generic base type.
|
||||||
// Important: rbase must be resolved before declaring any receiver type
|
// Important: rbase must be resolved before declaring any receiver type
|
||||||
// parameters (wich may have the same name, see below).
|
// parameters (which may have the same name, see below).
|
||||||
var baseType *Named // nil if not valid
|
var baseType *Named // nil if not valid
|
||||||
var cause string
|
var cause string
|
||||||
if t := check.genericType(rbase, &cause); isValid(t) {
|
if t := check.genericType(rbase, &cause); isValid(t) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue