From d14e5d38b504827c66246c3f3fc3c9d07e974e93 Mon Sep 17 00:00:00 2001 From: davhojt Date: Mon, 2 May 2022 16:49:30 +0100 Subject: [PATCH] docs(froup-prices): correct grammar --- subjects/group-price/README.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/subjects/group-price/README.md b/subjects/group-price/README.md index 4d4a88a5..a8c4d7f1 100644 --- a/subjects/group-price/README.md +++ b/subjects/group-price/README.md @@ -2,9 +2,9 @@ ### 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. @@ -13,4 +13,3 @@ Given price of `USD12.31`: ``` [["USD12.31", "12", "31"]] ``` -