Skip to content

Commit d39750f

Browse files
committed
minor
1 parent 807f0d8 commit d39750f

File tree

1 file changed

+1
-1
lines changed
  • 5-regular-expressions/15-regexp-infinite-backtracking-problem

1 file changed

+1
-1
lines changed

5-regular-expressions/15-regexp-infinite-backtracking-problem/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ Here we end the demo of the problem and start looking into what's going on and w
101101

102102
To make an example even simpler, let's consider `pattern:(\d+)*$`.
103103

104-
This regular expression also has the same probblem. In most regexp engines that search takes a very long time (careful -- can hang):
104+
This regular expression also has the same problem. In most regexp engines that search takes a very long time (careful -- can hang):
105105

106106
```js run
107107
alert( '12345678901234567890123456789123456789z'.match(/(\d+)*$/) );

0 commit comments

Comments
 (0)