From dc885d95f39b7bd0fc35dfc87356791ce7832cf8 Mon Sep 17 00:00:00 2001 From: Rodolfo Rodriguez Date: Thu, 6 Jul 2017 21:07:47 -0500 Subject: [PATCH] Fix minor grammar mistake --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2d3d93b..bfcb92d 100644 --- a/README.md +++ b/README.md @@ -119,7 +119,7 @@ Before using a package check its Github open issues, daily downloads and number ## 5. Testing * Have a test mode environment if needed. * Place your test files next to the tested modules using `*.test.js` or `*.spec.js` naming convention, like `module_name.spec.js` -* Put your additional test files to a separate test folder to avoid confusion. +* Put your additional test files into a separate test folder to avoid confusion. * write testable code, avoid side effect, extract side effects, write pure functions * Don’t write too many tests to check types, instead use a Static type checker * Run tests locally before any pull request to `develop`.