Fix typo in doc/grammars

This commit is contained in:
Fabien Villepinte 2022-05-13 19:38:22 +00:00 committed by Ondřej Mirtes
parent 5e424af90d
commit 5968e5f71a
2 changed files with 3 additions and 3 deletions

View File

@ -20,7 +20,7 @@ MethodParametersInner
= MethodParameter (',' MethodParameter)*
MethodParameter
= MethodParameterType? IsReference? IsVariaric? MethodParameterName MethodParameterDefaultValue?
= MethodParameterType? IsReference? IsVariadic? MethodParameterName MethodParameterDefaultValue?
MethodParameterType
= Type
@ -28,7 +28,7 @@ MethodParameterType
IsReference
= '&'
IsVariaric
IsVariadic
= '...'
MethodParameterName

View File

@ -7,7 +7,7 @@ AnnotationName
IsReference
= '&'
IsVariaric
IsVariadic
= '...'
ParameterName