feat(resources) http-project-guide grammar and clarity changes

This commit is contained in:
moe
2020-06-09 08:50:52 +01:00
parent d3df50b340
commit cc23c655f1
9 changed files with 13 additions and 13 deletions
@@ -23,7 +23,7 @@ fun test_get_definition() {
assert(line == "ANSWER something interesting here\n");
}
```
The idea is to try and test all the functionality of your program and use these tests to identify what is going wrong.
The idea here is to try and test all the functionality of your program and use the above tests to identify what may be going wrong.
Coverage is a reasonably good metric for establishing if your code is well tested. Coverage is identifying what lines
are covered by unit tests and what lines are not.