summaryrefslogtreecommitdiff
path: root/README.EXT
diff options
context:
space:
mode:
Diffstat (limited to 'README.EXT')
-rw-r--r--README.EXT3
1 files changed, 2 insertions, 1 deletions
diff --git a/README.EXT b/README.EXT
index 2d02708255..6364ab7a80 100644
--- a/README.EXT
+++ b/README.EXT
@@ -687,13 +687,14 @@ scan-arg-spec := param-arg-spec [block-arg-spec]
param-arg-spec := pre-arg-spec [post-arg-spec] / post-arg-spec
pre-arg-spec := num-of-leading-mandatory-args [num-of-optional-args]
-post-arg-spec := sym-for-variable-length-args
+post-arg-spec := sym-for-variable-length-args [num-of-trailing-mandatory-args]
block-arg-spec := sym-for-block-arg
num-of-leading-mandatory-args := DIGIT ; -- the number of the leading mandatory arguments
num-of-optional-args := DIGIT ; -- the number of the following optional arguments
sym-for-variable-length-args := "*" ; -- indicates that the following variable length
; arguments are captured as a Ruby array
+num-of-trailing-mandatory-args := DIGIT ; -- the number of the trailing mandatory arguments
sym-for-block-arg := "&" ; -- indicates that the iterator block should be
; captured if given
--