fix(curriculum): wording in Building a Spreadsheet step 55 (#55728)

This commit is contained in:
Akshat Tripathi
2024-08-07 01:17:35 +05:30
committed by GitHub
parent bde209bbba
commit a77f50bff4
@@ -7,7 +7,7 @@ dashedName: step-55
# --description--
The callback function then has a parameter for each capture group in the regular expression. In your case, `rangeRegex` has four capture groups: the first letter, the first numbers, the second letter, and the second numbers.
The callback function should have a parameter for each capture group in the regular expression. In your case, `rangeRegex` has four capture groups: the first letter, the first numbers, the second letter, and the second numbers.
Give your callback function four more parameters to match those capture groups: `char1`, `num1`, `char2`, and `num2`. `char` will be short for `character`.