From 0582e78b40d1001dc9d4852458593ef51a694d1f Mon Sep 17 00:00:00 2001 From: Ken Carpenter Date: Thu, 13 Aug 2015 22:31:12 -0700 Subject: [PATCH] Minor help text improvements --- docs/introduction/Examples.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/introduction/Examples.md b/docs/introduction/Examples.md index ed573f394b..d8c2bcf687 100644 --- a/docs/introduction/Examples.md +++ b/docs/introduction/Examples.md @@ -1,7 +1,7 @@ # Examples Redux is distributed with a few examples in its [source code](https://github.com/gaearon/redux/tree/master/examples). -**To run either of them, clone the repo and run `npm install` both in the root and the example folder.** +**To run any of them, clone the repo and run `npm install` both in the root and the example folder.** >##### Note on Copying >If you copy Redux examples outside their folders, remove these lines from their `webpack.config.js`: @@ -87,7 +87,7 @@ open http://localhost:3000/ It covers: * Basic async Redux flow with [redux-thunk](https://github.com/gaearon/redux-thunk); -* Caching responses and showing spinner while data is fetching; +* Caching responses and showing a spinner while data is fetching; * Invalidating the cached data. ## Real World @@ -112,7 +112,7 @@ It covers: * Real-world async Redux flow; * Keeping entities in a normalized entity cache; * A custom middleware for API calls; -* Caching responses and showing spinner while data is fetching; +* Caching responses and showing a spinner while data is fetching; * Pagination; * Routing.