From 495b0666201d90bc3d13e4f131c5a45672a7fe19 Mon Sep 17 00:00:00 2001 From: Clarence Bakosi Date: Sat, 25 Apr 2026 01:42:33 +0100 Subject: [PATCH] fix(curriculum): correct "returnes" typo in workshop word counter (#67103) --- .../workshop-word-counter/6921e10ae2681205b516fbe6.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/curriculum/challenges/english/blocks/workshop-word-counter/6921e10ae2681205b516fbe6.md b/curriculum/challenges/english/blocks/workshop-word-counter/6921e10ae2681205b516fbe6.md index 846f103ec1f..1e73f463d64 100644 --- a/curriculum/challenges/english/blocks/workshop-word-counter/6921e10ae2681205b516fbe6.md +++ b/curriculum/challenges/english/blocks/workshop-word-counter/6921e10ae2681205b516fbe6.md @@ -26,28 +26,28 @@ assert.deepEqual(spy.returns, ["number", "number", "number", "number"]); spy.restore(); ``` -`getMatchedWordCount([], "bar")` should return `0`, but it returnes `--fcc-actual--`. +`getMatchedWordCount([], "bar")` should return `0`, but it returns `--fcc-actual--`. ```js const resultString = String(getMatchedWordCount([], "bar")); assert.strictEqual(resultString, "0"); ``` -`getMatchedWordCount(["foo"], "bar")` should return `0`, but it returnes `--fcc-actual--`. +`getMatchedWordCount(["foo"], "bar")` should return `0`, but it returns `--fcc-actual--`. ```js const resultString = String(getMatchedWordCount(["foo"], "bar")); assert.equal(resultString, "0"); ``` -`getMatchedWordCount(["foo", "bar", "foo"], "bar")` should return `1`, but it returnes `--fcc-actual--`. +`getMatchedWordCount(["foo", "bar", "foo"], "bar")` should return `1`, but it returns `--fcc-actual--`. ```js const resultString = String(getMatchedWordCount(["foo", "bar", "foo"], "bar")); assert.equal(resultString, "1"); ``` -`getMatchedWordCount(["foo", "bar", "foo"], "foo")` should return `2`, but it returnes `--fcc-actual--`. +`getMatchedWordCount(["foo", "bar", "foo"], "foo")` should return `2`, but it returns `--fcc-actual--`. ```js const resultString = String(getMatchedWordCount(["foo", "bar", "foo"], "foo"));