summaryrefslogtreecommitdiff
path: root/enum.c
diff options
context:
space:
mode:
authorNobuyoshi Nakada <[email protected]>2025-01-02 12:06:06 +0900
committerNobuyoshi Nakada <[email protected]>2025-01-02 12:23:49 +0900
commitb4ec22fe6c493a212c059cecab90de5b5f349102 (patch)
tree1e4e274cfd5e2bc079142462b48eba6f04380e24 /enum.c
parentd441d351073d6a6c49f7c12ea99e17480aa4ee5e (diff)
[DOC] Exclude 'Method' from RDoc's autolinking
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/12496
Diffstat (limited to 'enum.c')
-rw-r--r--enum.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/enum.c b/enum.c
index d8a7cb73f3..ac73f671b6 100644
--- a/enum.c
+++ b/enum.c
@@ -3912,7 +3912,7 @@ chunk_i(RB_BLOCK_CALL_FUNC_ARGLIST(yielder, enumerator))
* e.next # => [2, [6, 7, 8]]
* e.next # => [3, [9, 10]]
*
- * \Method +chunk+ is especially useful for an enumerable that is already sorted.
+ * Method +chunk+ is especially useful for an enumerable that is already sorted.
* This example counts words for each initial letter in a large array of words:
*
* # Get sorted words from a web page.