From 50ae2dac8b2ea0bcf42346873fb2ed9a494c026e Mon Sep 17 00:00:00 2001 From: Connor Date: Sun, 24 Feb 2019 06:02:17 +0000 Subject: [PATCH] Small grammar edits (#29912) --- guide/english/agile/test-driven-development/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/agile/test-driven-development/index.md b/guide/english/agile/test-driven-development/index.md index 1a8b7cc72a..f03778d765 100644 --- a/guide/english/agile/test-driven-development/index.md +++ b/guide/english/agile/test-driven-development/index.md @@ -14,7 +14,7 @@ Test Driven Development is essentially comprised of 4 steps: - Run the test case again confirming test passes (Green) - Refactor the code as per typical standards (Refactor) -These steps follow the principle of Red-Green-Refactor. The Red-Green steps ensure that you write the simplest code possible to solve the problem while the last step makes sure that the code that you write is up to typical coding standards. +These steps follow the principle of *Red-Green-Refactor*. For the *Red-Green* steps, make sure that you write the simplest code possible to solve the problem and when *Refactoring*, ensure that it follows *Clean Code* principles. Each new feature of your system should follow the steps above.