]> granicus.if.org Git - python/commitdiff
bpo-37352: Minor word-smithing for design.rst (GH #14730)
authorIlya Kamenshchikov <ikamenshchikov@gmail.com>
Tue, 16 Jul 2019 15:13:38 +0000 (17:13 +0200)
committerRaymond Hettinger <rhettinger@users.noreply.github.com>
Tue, 16 Jul 2019 15:13:38 +0000 (08:13 -0700)
Doc/faq/design.rst

index 387420c17bd152800543ab0cae713b137f846db9..47fc4d498e76a96a02b6cd2532b3e5b2633d1632 100644 (file)
@@ -641,11 +641,11 @@ to the end of some internal list; an interface specification cannot test that
 your :meth:`append` implementation will actually do this correctly, but it's
 trivial to check this property in a test suite.
 
-Writing test suites is very helpful, and you might want to design your code with
-an eye to making it easily tested.  One increasingly popular technique,
-test-directed development, calls for writing parts of the test suite first,
-before you write any of the actual code.  Of course Python allows you to be
-sloppy and not write test cases at all.
+Writing test suites is very helpful, and you might want to design your code to
+make it easily tested. One increasingly popular technique, test-driven
+development, calls for writing parts of the test suite first, before you write
+any of the actual code.  Of course Python allows you to be sloppy and not write
+test cases at all.
 
 
 Why is there no goto?