summaryrefslogtreecommitdiff
path: root/doc/syntax
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2022-02-09 15:31:10 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2022-02-09 15:31:10 +0900
commitadca6f24b12d15299bf82fb518502dd27f4add84 (patch)
treed6f0e5d937fff5f8359b646bd66581ad8b291e61 /doc/syntax
parent85ad8c65ca7f2292dbdfebbf541cce6ac9b82451 (diff)
[DOC] Prefer the original file names over generated names
Should also the label in an explicit `rdoc-ref:` link be converted in the future?
Diffstat (limited to 'doc/syntax')
-rw-r--r--doc/syntax/precedence.rdoc2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/syntax/precedence.rdoc b/doc/syntax/precedence.rdoc
index f64691ab1f..f0ca92b571 100644
--- a/doc/syntax/precedence.rdoc
+++ b/doc/syntax/precedence.rdoc
@@ -55,7 +55,7 @@ keywords. For example, this is a modifier-unless statement:
Note that <code>(a if b rescue c)</code> is parsed as <code>((a if b) rescue
c)</code> due to reasons not related to precedence. See {modifier
-statements}[control_expressions_rdoc.html#label-Modifier+Statements].
+statements}[control_expressions.rdoc#label-Modifier+Statements].
<code>{ ... }</code> blocks have priority below all listed operations, but
<code>do ... end</code> blocks have lower priority.