Skip to content

Commit f0c120d

Browse files
committed
review suggestions
1 parent b7bf241 commit f0c120d

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

using/solving-exercises/tdd.md

+6-5
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Test-Driven Development (sometimes called Test-First Development or Test-Driven
55
## On Exercism, the tests _are_ the requirements!
66

77
All Practice Exercises you work on (those ones that don't teach you a new concept) will have some instructions describing in general terms what you need to do.
8-
By design, these instructions do not account for programming-language-specific implementation details because they are shared by all of Exercisms 70+ language tracks.
8+
By design, these instructions do not account for programming-language-specific implementation details because they are shared by all of Exercism's 70+ language tracks.
99
Some language tracks will append more specific details for you, but not all of them do.
1010

1111
When you start working on a Practice Exercise, give the instructions a careful read.
@@ -31,12 +31,12 @@ Should you choose to work with a mentor (and we encourage you to do that once yo
3131

3232
## Working in the online editor
3333

34-
When youre working in the code editor on Exercisms website, you can read the tests but you are not able to edit them.
34+
When you're working in the code editor on Exercism's website, you can read the tests but you are not able to edit them.
3535
All tests will be executed each time you run them, regardless of any "skip" mechanisms noted in the test file.
3636

3737
Test results will default to expanding the first failed test message (although what is displayed varies by track).
3838

39-
Dont be discouraged by a large number of failing tests.
39+
Don't be discouraged by a large number of failing tests.
4040
Focus on making them pass one-by-one.
4141

4242
## Working locally
@@ -48,10 +48,11 @@ We do this to encourage you to follow this workflow:
4848

4949
1. Before adding any new code, run the test suite: you should see a failing test.
5050
1. Add _just enough_ code to pass the test.
51-
1. Run the test suite. If the test still fails, repeat the last step.
51+
1. Run the test suite.
52+
If the test still fails, repeat the last step.
5253
1. Review your code and refactor as desired, making sure the tests still pass.
5354
1. Once you have passed all the tests, congratulations you're done!
54-
1. Otherwise, "unskip" the next test and goto 1.
55+
1. Otherwise, "unskip" the next test and goto 1.
5556

5657
Exactly how tests are "unskipped" (or activated) depends on the track.
5758
For some tracks, it might be commenting or removing an annotation.

0 commit comments

Comments
 (0)