Skip to content

Commit ca58b10

Browse files
authored
Missing closing quote " ` " (#649)
1 parent 03090fc commit ca58b10

File tree

1 file changed

+1
-1
lines changed
  • 9-regular-expressions/05-regexp-multiline-mode

1 file changed

+1
-1
lines changed

9-regular-expressions/05-regexp-multiline-mode/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ console.log( str.match(/^\d/gm) ); // 1, 2, 3
2525
```js run
2626
let str = `1 місце: Вінні
2727
2 місце: Паць
28-
3 місце: Слонопотам;
28+
3 місце: Слонопотам`;
2929

3030
*!*
3131
console.log( str.match(/^\d/g) ); // 1

0 commit comments

Comments
 (0)