Skip to content

Commit 27a5c6f

Browse files
authored
👾 fix another typo
1 parent f838621 commit 27a5c6f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

9-regular-expressions/17-regexp-methods/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,7 @@ alert( regexp.exec(str) ); // null
304304
```js run
305305
let str = "Я люблю JavaScript";
306306
307-
// эти два теста делают одно и же
307+
// эти два теста делают одно и то же
308308
alert( *!*/люблю/i*/!*.test(str) ); // true
309309
alert( str.search(*!*/люблю/i*/!*) != -1 ); // true
310310
```

0 commit comments

Comments
 (0)