Skip to content

Commit

Permalink
Renaming function-arg* to arg and arg-list
Browse files Browse the repository at this point in the history
  • Loading branch information
mtdowling committed Jan 3, 2015
1 parent ecddb19 commit a9b0bd7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/jmespath-grammar.txt
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@ multiple-values = expr 1*( "," expr )
multi-hash = "{" ( keyval *( "," keyval ) ) "}"
keyval = identifier ":" expr

function = unquoted-string function-args
function-args = "(" *1(function-arg *("," function-arg)) ")"
function-arg = expr / expref
function = unquoted-string arg-list
arg-list = "(" *1(arg *("," arg)) ")"
arg = expr / expref

expref = "&" expr
wildcard-values = "*"
Expand Down

0 comments on commit a9b0bd7

Please sign in to comment.