diff options
author | Kazuhiro NISHIYAMA <[email protected]> | 2022-04-06 11:59:35 +0900 |
---|---|---|
committer | Kazuhiro NISHIYAMA <[email protected]> | 2022-04-06 11:59:35 +0900 |
commit | 8da0b68a628af4c4b527d4621be185074745e348 (patch) | |
tree | 92ac5b6f4801f9d23f27283234fe76c0d8bb6dc4 /proc.c | |
parent | c59488a8e3410f93a919c21a9df056f4344aac3e (diff) |
Fix a typo [ci skip]
Diffstat (limited to 'proc.c')
-rw-r--r-- | proc.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1428,7 +1428,7 @@ rb_unnamed_parameters(int arity) * prc = proc{|x, y=42, *other|} * prc.parameters(lambda: true) #=> [[:req, :x], [:opt, :y], [:rest, :other]] * prc = lambda{|x, y=42, *other|} - * prc.parameters(lamdba: false) #=> [[:opt, :x], [:opt, :y], [:rest, :other]] + * prc.parameters(lambda: false) #=> [[:opt, :x], [:opt, :y], [:rest, :other]] */ static VALUE |