Commit d5358f0f authored by Abhi Shah's avatar Abhi Shah

Merge pull request #13537 from stevekuznetsov/skuznets/typo

fixed error typo
parents 380d7d95 0a07a461
......@@ -445,7 +445,7 @@ func (p *Parser) parse() ([]Requirement, error) {
case IdentifierToken:
r, err := p.parseRequirement()
if err != nil {
return nil, fmt.Errorf("unable to parse requiremnt: %v", err)
return nil, fmt.Errorf("unable to parse requirement: %v", err)
}
requirements = append(requirements, *r)
t, l := p.consume(Values)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment