Fix typos in 9.11 (Capturing groups)

This commit is contained in:
Vse Mozhe Buty 2020-12-09 18:54:47 +02:00
parent 633db6fbe9
commit f2f650062c
4 changed files with 4 additions and 4 deletions

View file

@ -16,5 +16,5 @@ alert( regexp.test('0132546789AB') ); // false (no colons)
alert( regexp.test('01:32:54:67:89') ); // false (5 numbers, must be 6)
alert( regexp.test('01:32:54:67:89:ZZ') ) // false (ZZ ad the end)
alert( regexp.test('01:32:54:67:89:ZZ') ) // false (ZZ at the end)
```