We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 807f0d8 commit d39750fCopy full SHA for d39750f
5-regular-expressions/15-regexp-infinite-backtracking-problem/article.md
@@ -101,7 +101,7 @@ Here we end the demo of the problem and start looking into what's going on and w
101
102
To make an example even simpler, let's consider `pattern:(\d+)*$`.
103
104
-This regular expression also has the same probblem. In most regexp engines that search takes a very long time (careful -- can hang):
+This regular expression also has the same problem. In most regexp engines that search takes a very long time (careful -- can hang):
105
106
```js run
107
alert( '12345678901234567890123456789123456789z'.match(/(\d+)*$/) );
0 commit comments