From e592c0aa5073ff6be113ffa49959065c3d83e9d4 Mon Sep 17 00:00:00 2001 From: diegosouzajp Date: Mon, 18 Aug 2025 16:54:55 -0300 Subject: [PATCH] Update part4a.md small comma correction --- src/content/4/en/part4a.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/4/en/part4a.md b/src/content/4/en/part4a.md index 81fc1788524..fc9fe94b95c 100644 --- a/src/content/4/en/part4a.md +++ b/src/content/4/en/part4a.md @@ -748,7 +748,7 @@ If there are many top bloggers, then it is enough to return any one of them. #### 4.7*: Helper Functions and Unit Tests, step 5 -Define a function called _mostLikes_ that receives an array of blogs as its parameter. The function returns the author, whose blog posts have the largest amount of likes. The return value also contains the total number of likes that the author has received: +Define a function called _mostLikes_ that receives an array of blogs as its parameter. The function returns the author whose blog posts have the largest amount of likes. The return value also contains the total number of likes that the author has received: ```js {