[DOC] Update comment of assert_pattern_list

`pattern_list` may contain string since d903e76726.
This commit is contained in:
Nobuyoshi Nakada 2023-03-22 22:35:58 +09:00
Родитель aa5d195712
Коммит 27916db08c
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 7CD2805BFA3770C6
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -541,11 +541,11 @@ eom
refute_respond_to(obj, meth, msg)
end
# pattern_list is an array which contains regexp and :*.
# pattern_list is an array which contains regexp, string and :*.
# :* means any sequence.
#
# pattern_list is anchored.
# Use [:*, regexp, :*] for non-anchored match.
# Use [:*, regexp/string, :*] for non-anchored match.
def assert_pattern_list(pattern_list, actual, message=nil)
rest = actual
anchored = true