correct minor error: "имя" is used in place of "name"

This commit is contained in:
Zhi Yin 2020-05-19 14:54:36 -04:00 committed by GitHub
parent 7fc037f8f3
commit 787409b30e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -57,7 +57,7 @@ In the replacement string we use a dollar sign: `pattern:$1`, while in the patte
If a regexp has many parentheses, it's convenient to give them names. If a regexp has many parentheses, it's convenient to give them names.
To reference a named group we can use `pattern:\k<имя>`. To reference a named group we can use `pattern:\k<name>`.
In the example below the group with quotes is named `pattern:?<quote>`, so the backreference is `pattern:\k<quote>`: In the example below the group with quotes is named `pattern:?<quote>`, so the backreference is `pattern:\k<quote>`: