[DOC] Fixed the description of regexp alternations [ci skip]

This commit is contained in:
Ulysses Zhan 2021-07-22 13:10:57 +08:00 коммит произвёл GitHub
Родитель d6b8819b79
Коммит e4b68ab700
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -372,8 +372,8 @@ then matches a literal <i>)</i>:
== Alternation
The vertical bar metacharacter (<tt>|</tt>) combines two expressions into
a single one that matches either of the expressions. Each expression is an
The vertical bar metacharacter (<tt>|</tt>) combines several expressions into
a single one that matches any of the expressions. Each expression is an
<i>alternative</i>.
/\w(and|or)\w/.match("Feliformia") #=> #<MatchData "form" 1:"or">