Skip to content

Commit

Permalink
Fix a typo in the missing "as" error message
Browse files Browse the repository at this point in the history
  • Loading branch information
stevenwadejr authored Feb 20, 2017
1 parent 1f48f26 commit 65c295c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion parse/Parse.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ func Build(args []string) (util.SumoOperator, error) {
}
as := args[2]
if as != "as" {
return nil, util.ParseError("Expacted `as` got " + as + "\n" + genericError)
return nil, util.ParseError("Expected `as` got " + as + "\n" + genericError)
}
extractions := make([]string, len(args) - 3)
for i, arg := range args[3:] {
Expand Down

0 comments on commit 65c295c

Please sign in to comment.