Skip to content

Commit 787409b

Browse files
authored
correct minor error: "имя" is used in place of "name"
1 parent 7fc037f commit 787409b

File tree

1 file changed

+1
-1
lines changed
  • 9-regular-expressions/12-regexp-backreferences

1 file changed

+1
-1
lines changed

9-regular-expressions/12-regexp-backreferences/article.md

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

0 commit comments

Comments
 (0)