From ad0ac66991275c0a58df556d36689b5661a51a14 Mon Sep 17 00:00:00 2001
From: nsarafa <nicksarafa@gmail.com>
Date: Tue, 1 Nov 2016 20:54:05 -0400
Subject: [PATCH] tweak Chapter 12 spelling & clarify test(s) should be written
 to gulpfile.babel.js

---
 tutorial/11-testing-mocha-chai-sinon/README.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/tutorial/11-testing-mocha-chai-sinon/README.md b/tutorial/11-testing-mocha-chai-sinon/README.md
index 0d0acd4..e6f070b 100644
--- a/tutorial/11-testing-mocha-chai-sinon/README.md
+++ b/tutorial/11-testing-mocha-chai-sinon/README.md
@@ -2,7 +2,7 @@
 
 ## Mocha and Chai
 
-- Create an `src/test` folder. This folder will mirror our application folder structure, so create a `src/test/client` folder as well (feel free to add `server` and `shared` if you want, but we're not going to write tests for these).
+- Create a `src/test` folder. This folder will mirror our application folder structure, so create a `src/test/client` folder as well (feel free to add `server` and `shared` if you want, but we're not going to write tests for these).
 
 - In `src/test/client`, create a `state-test.js` file, which we are going to use to test our Redux application life cycle.
 
@@ -52,7 +52,7 @@ Our `makeBark` test is very explicit, and the description provided as a string i
 
 Alright, let's run this test!
 
-- Create the following `test` task, which relies on the `gulp-mocha` plugin:
+- In `gulpfile.babel.js`, create the following `test` task, which relies on the `gulp-mocha` plugin:
 
 ```javascript
 import mocha from 'gulp-mocha';
-- 
GitLab