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.
This commit is contained in:
Ryan 2022-04-30 21:04:34 -06:00 committed by GitHub
parent 291b5c05b9
commit b4379c5dc8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -51,7 +51,7 @@ describe("pow", function() {
A spec has three main building blocks that you can see above: A spec has three main building blocks that you can see above:
`describe("title", function() { ... })` `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() { ... })` `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. : 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.