[DOC] Fix typo in Enumerable#slice_before

This commit is contained in:
Kouhei Yanagita 2022-10-18 12:19:02 +09:00 коммит произвёл Nobuyoshi Nakada
Родитель 18b96d8a82
Коммит f982a26374
1 изменённых файлов: 1 добавлений и 1 удалений

2
enum.c
Просмотреть файл

@ -3834,7 +3834,7 @@ slicebefore_i(RB_BLOCK_CALL_FUNC_ARGLIST(yielder, enumerator))
/* /*
* call-seq: * call-seq:
* slice_before(pattern) -> enumerator * slice_before(pattern) -> enumerator
* slice_before {|array| ... } -> enumerator * slice_before {|elt| ... } -> enumerator
* *
* With argument +pattern+, returns an enumerator that uses the pattern * With argument +pattern+, returns an enumerator that uses the pattern
* to partition elements into arrays ("slices"). * to partition elements into arrays ("slices").