mirror of https://github.com/golang/go.git
go/ast: fix inflection in comments to match plurality
Change-Id: I3a725c5691a1090952acdc2ae0bed96aaa8d7067
GitHub-Last-Rev: 339a0dda36
GitHub-Pull-Request: golang/go#37256
Reviewed-on: https://go-review.googlesource.com/c/go/+/219737
Reviewed-by: Robert Griesemer <gri@golang.org>
This commit is contained in:
parent
02e492f1a3
commit
ab2cc45cc9
|
|
@ -226,8 +226,8 @@ func (f *FieldList) NumFields() int {
|
|||
// or more of the following concrete expression nodes.
|
||||
//
|
||||
type (
|
||||
// A BadExpr node is a placeholder for expressions containing
|
||||
// syntax errors for which no correct expression nodes can be
|
||||
// A BadExpr node is a placeholder for an expression containing
|
||||
// syntax errors for which a correct expression node cannot be
|
||||
// created.
|
||||
//
|
||||
BadExpr struct {
|
||||
|
|
@ -897,8 +897,8 @@ func (*TypeSpec) specNode() {}
|
|||
// A declaration is represented by one of the following declaration nodes.
|
||||
//
|
||||
type (
|
||||
// A BadDecl node is a placeholder for declarations containing
|
||||
// syntax errors for which no correct declaration nodes can be
|
||||
// A BadDecl node is a placeholder for a declaration containing
|
||||
// syntax errors for which a correct declaration node cannot be
|
||||
// created.
|
||||
//
|
||||
BadDecl struct {
|
||||
|
|
|
|||
Loading…
Reference in New Issue