Skip to content

Commit f9bec9f

Browse files
authored
Merge pull request #629 from duianto/patch-2
Add missing "the"
2 parents 1fb782c + e717016 commit f9bec9f

File tree

1 file changed

+1
-1
lines changed
  • 5-regular-expressions/09-regexp-groups/3-find-decimal-positive-numbers

1 file changed

+1
-1
lines changed

5-regular-expressions/09-regexp-groups/3-find-decimal-positive-numbers/solution.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ An integer number is `pattern:\d+`.
33

44
A decimal part is: `pattern:\.\d+`.
55

6-
Because the decimal part is optional, let's put it in parentheses with quantifier `pattern:'?'`.
6+
Because the decimal part is optional, let's put it in parentheses with the quantifier `pattern:'?'`.
77

88
Finally we have the regexp: `pattern:\d+(\.\d+)?`:
99

0 commit comments

Comments
 (0)