update abnf to reflect recent changes

This commit is contained in:
gluax 2022-04-06 10:41:18 -07:00
parent a5b692a765
commit 8482430299
2 changed files with 1 additions and 1 deletions

Binary file not shown.

View File

@ -314,7 +314,7 @@ function-declaration = %s"function" identifier
function-parameters = function-parameter *( "," function-parameter ) [ "," ]
function-parameter = [ %s"public" ] [ %s"const" ] identifier ":" type
function-parameter = [ %s"public" / %s"const" ] identifier ":" type
declaration = function-declaration