[DOC] Fix broken links to literals.rdoc

This commit is contained in:
Nobuyoshi Nakada 2022-02-08 01:26:39 +09:00
parent bc5662d9d8
commit 16fdc1ff46
No known key found for this signature in database
GPG key ID: 7CD2805BFA3770C6
9 changed files with 13 additions and 13 deletions

2
proc.c
View file

@ -3972,7 +3972,7 @@ proc_ruby2_keywords(VALUE procval)
*
* lambda1 = lambda {|x| x**2 }
*
* * Use the {Lambda proc literal}[doc/syntax/literals_rdoc.html#label-Lambda+Proc+Literals] syntax
* * Use the {Lambda proc literal}[rdoc-ref:syntax/literals.rdoc@Lambda+Proc+Literals] syntax
* (also constructs a proc with lambda semantics):
*
* lambda2 = ->(x) { x**2 }