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"));