Skip to content

Commit f65c25d

Browse files
authored
Merge pull request #2978 from MondoBurrito/patch-3
Fixed grammatical error.
2 parents 6ce9e71 + b4379c5 commit f65c25d

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)