Skip to content

Commit b4379c5

Browse files
authored
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 parent 291b5c0 commit b4379c5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

1-js/03-code-quality/05-testing-mocha/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ describe("pow", function() {
5151
A spec has three main building blocks that you can see above:
5252

5353
`describe("title", function() { ... })`
54-
: What functionality we're describing. In our case we're describing the function `pow`. Used to group "workers" -- the `it` blocks.
54+
: What functionality we're describing? In our case we're describing the function `pow`. Used to group "workers" -- the `it` blocks.
5555

5656
`it("use case description", function() { ... })`
5757
: 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.

0 commit comments

Comments
 (0)