Skip to content

Commit 95311c8

Browse files
authored
fix: typo
1 parent b57f2eb commit 95311c8

File tree

1 file changed

+1
-1
lines changed
  • 9-regular-expressions/09-regexp-quantifiers

1 file changed

+1
-1
lines changed

9-regular-expressions/09-regexp-quantifiers/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ alert( "0 1 12.345 7890".match(/\d+\.\d+/g) ); // 12.345
117117

118118
2. 进阶版:`pattern:/<[a-z][a-z0-9]*>/i`
119119

120-
根据标准,HTML 标签名称可以在除了第一个位置之外的任何位置有一个数字,例如 `<h1>`
120+
根据标准,HTML 标签名称可以在除了第一个位置之外的任何位置有一个数字,例如 `<h1>`
121121

122122
```js run
123123
alert( "<h1>Hi!</h1>".match(/<[a-z][a-z0-9]*>/gi) ); // <h1>

0 commit comments

Comments
 (0)