aboutsummaryrefslogtreecommitdiffstats
path: root/README.EXT.ja
diff options
context:
space:
mode:
Diffstat (limited to 'README.EXT.ja')
-rw-r--r--README.EXT.ja3
1 files changed, 2 insertions, 1 deletions
diff --git a/README.EXT.ja b/README.EXT.ja
index d7a688f721..feecc26e2b 100644
--- a/README.EXT.ja
+++ b/README.EXT.ja
@@ -775,13 +775,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 ; -- 先頭に置かれる省略不可能な引数の数
num-of-optional-args := DIGIT ; -- 続いて置かれる省略可能な引数の数
sym-for-variable-length-args := "*" ; -- 続いて置かれる可変長引数をRubyの配列で
; 取得するための指定
+num-of-trailing-mandatory-args := DIGIT ; -- 終端に置かれる省略不可能な引数の数
sym-for-block-arg := "&" ; -- イテレータブロックを取得するための指定
--