From a7f948c32c169ceabb5719f0328e594759c73cd8 Mon Sep 17 00:00:00 2001 From: Brandon Zylstra <9854+brandonzylstra@users.noreply.github.com> Date: Sat, 22 Nov 2025 18:35:15 -0500 Subject: [PATCH] [DOC] Fix a typo in enum.c documentation fix a minor misspelling in the documentation comments --- enum.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/enum.c b/enum.c index cbf74df484..ba0dc94744 100644 --- a/enum.c +++ b/enum.c @@ -3946,7 +3946,7 @@ chunk_i(RB_BLOCK_CALL_FUNC_ARGLIST(yielder, enumerator)) * ["F", 6860] * * You can use the special symbol :_alone to force an element - * into its own separate chuck: + * into its own separate chunk: * * a = [0, 0, 1, 1] * e = a.chunk{|i| i.even? ? :_alone : true }