[DOC] Fix a typo in enum.c documentation

fix a minor misspelling in the documentation comments
This commit is contained in:
Brandon Zylstra 2025-11-22 18:35:15 -05:00 committed by Nobuyoshi Nakada
parent dd489ee9c4
commit a7f948c32c
Notes: git 2025-11-23 02:32:23 +00:00

2
enum.c
View File

@ -3946,7 +3946,7 @@ chunk_i(RB_BLOCK_CALL_FUNC_ARGLIST(yielder, enumerator))
* ["F", 6860]
*
* You can use the special symbol <tt>:_alone</tt> 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 }