Skip to content

Commit

Permalink
Fix misspelling of "explicitly"
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 453624016
  • Loading branch information
txtpbfmt-copybara-robot committed Jun 8, 2022
1 parent 74888fd commit fc78c76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion parser/parser.go
Original file line number Diff line number Diff line change
Expand Up @@ -714,7 +714,7 @@ func (p *parser) parse(isRoot bool) (result []*ast.Node, endPos ast.Position, er
return nil, ast.Position{}, err
}
if len(vals) != 1 {
return nil, ast.Position{}, fmt.Errorf("multiple-string value not supported (%v). Please add comma explcitily, see http://b/162070952", vals)
return nil, ast.Position{}, fmt.Errorf("multiple-string value not supported (%v). Please add comma explicitly, see http://b/162070952", vals)
}
vals[0].PreComments = append(vals[0].PreComments, preComments...)

Expand Down

0 comments on commit fc78c76

Please sign in to comment.