From 1fce6d6bae4509bdae30703d94fbf21368c942fa Mon Sep 17 00:00:00 2001 From: Stewart Rand Date: Wed, 8 Apr 2020 13:46:35 -0300 Subject: [PATCH] docs: Minor grammar fix: "bug-free" (#36515) Change documentation to a more grammatically correct format. "bug-free" is preferred over "bug free". PR Close #36515 --- aio/content/guide/testing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aio/content/guide/testing.md b/aio/content/guide/testing.md index b2f1d08a42..e4510e730d 100644 --- a/aio/content/guide/testing.md +++ b/aio/content/guide/testing.md @@ -93,7 +93,7 @@ Adopt these two conventions in your own projects for _every kind_ of test file. ## Set up continuous integration -One of the best ways to keep your project bug free is through a test suite, but it's easy to forget to run tests all the time. +One of the best ways to keep your project bug-free is through a test suite, but it's easy to forget to run tests all the time. Continuous integration (CI) servers let you set up your project repository so that your tests run on every commit and pull request. There are paid CI services like Circle CI and Travis CI, and you can also host your own for free using Jenkins and others.