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:
parent
291b5c05b9
commit
b4379c5dc8
1 changed files with 1 additions and 1 deletions
|
@ -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.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue