From 84a9c4f77fc3edd7af44e46ae22276145f29752f Mon Sep 17 00:00:00 2001 From: Trey Bianchini Date: Wed, 3 Jun 2020 12:04:59 -0500 Subject: [PATCH] a few more grammar typos --- docs/README.md | 4 ++-- docs/recipes.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/README.md b/docs/README.md index b845fc6..70b84e5 100644 --- a/docs/README.md +++ b/docs/README.md @@ -5,7 +5,7 @@ So, I'm a fan of [Redux](https://redux.js.org). As I was looking into tools to help cut on its boilerplate, I came across [rematch](https://rematch.github.io/rematch). -It has a few pretty darn good ideas. +It has some pretty darn good ideas. Keeping mutations and asynchronous effects close to the reducer definition? Nice. Automatically infering the actions from the said mutations and effects? Genius! @@ -19,7 +19,7 @@ to work with `updeep` and to fit my peculiar needs. It offers features such as * Mimic the way VueX has mutations (reducer reactions to specific actions) and effects (middleware reacting to actions that can be asynchronous and/or - have side-effects), so everything pertaining to a store are all defined + have side-effects), so all things pertaining to a store are defined in the space place. * Automatically gather all actions used by the updux's effects and mutations, and makes then accessible as attributes to the `dispatch` object of the diff --git a/docs/recipes.md b/docs/recipes.md index 20aec25..7a1cd48 100644 --- a/docs/recipes.md +++ b/docs/recipes.md @@ -3,7 +3,7 @@ ## Mapping a mutation to all values of a state Say you have a `todos` state that is an array of `todo` sub-states. It's easy -enough to have the main reducer maps away all items to the sub-reducer: +enough to have the main reducer map away all items to the sub-reducer: ``` const todo = new Updux({