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

@ -1,4 +1,4 @@
A regexp for a number is: `pattern:-?\d+(\.\d+)?`. We created it in previous tasks.
A regexp for a number is: `pattern:-?\d+(\.\d+)?`. We created it in the previous task.
An operator is `pattern:[-+*/]`. The hyphen `pattern:-` goes first in the square brackets, because in the middle it would mean a character range, while we just want a character `-`.