From b4379c5dc8c82d66a7a75aefb70256e1bd6362b2 Mon Sep 17 00:00:00 2001 From: Ryan <50547130+MondoBurrito@users.noreply.github.com> Date: Sat, 30 Apr 2022 21:04:34 -0600 Subject: [PATCH] Fixed grammatical error. Line 54: "What functionality we're describing" -- I believe this is a question? Without a question mark, it doesn't make much sense. --- 1-js/03-code-quality/05-testing-mocha/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/03-code-quality/05-testing-mocha/article.md b/1-js/03-code-quality/05-testing-mocha/article.md index 9037b484..79f19037 100644 --- a/1-js/03-code-quality/05-testing-mocha/article.md +++ b/1-js/03-code-quality/05-testing-mocha/article.md @@ -51,7 +51,7 @@ describe("pow", function() { A spec has three main building blocks that you can see above: `describe("title", function() { ... })` -: What functionality we're describing. In our case we're describing the function `pow`. Used to group "workers" -- the `it` blocks. +: What functionality we're describing? In our case we're describing the function `pow`. Used to group "workers" -- the `it` blocks. `it("use case description", function() { ... })` : In the title of `it` we *in a human-readable way* describe the particular use case, and the second argument is a function that tests it.