docs(froup-prices): correct grammar

This commit is contained in:
davhojt 2022-05-02 16:49:30 +01:00 committed by Dav Hojt
parent 1e9c297c7c
commit d14e5d38b5
1 changed files with 2 additions and 3 deletions

View File

@ -2,9 +2,9 @@
### Instructions ### Instructions
Create a function named `groupPrice`, that can prices in a given string. Create a function named `groupPrice`, that can find prices in a given string.
Your function will return s 2D array with the full price breakdown. Your function will return 2D array with the full price breakdown.
If there is no match, your function should return an empty array. If there is no match, your function should return an empty array.
@ -13,4 +13,3 @@ Given price of `USD12.31`:
``` ```
[["USD12.31", "12", "31"]] [["USD12.31", "12", "31"]]
``` ```