From 4fe0085d907e46e1052fd3b1f5156cfa541f56f6 Mon Sep 17 00:00:00 2001 From: Andrei Dumitrescu <5057797+andreidcm@users.noreply.github.com> Date: Sun, 26 Jan 2020 00:34:11 +0100 Subject: [PATCH] chore: Fix lint errors --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 0f79701..1f3527f 100644 --- a/README.md +++ b/README.md @@ -52,7 +52,7 @@ const TodosList = buildList( * Define CRUD actions and map to one or more data sources (local storage, * 3rd party APIs or own API). * - * Only 5 actions can be defined: `create`, `read`, `readOne`, `update` and + * Only 5 actions can be defined: `create`, `read`, `readOne`, `update` and * `remove`. These have internaly 3 reducers each: onStart, onEnd and onError. */ { @@ -78,8 +78,8 @@ const TodosList = buildList( }, /** - * Before reducers update the state, this transformer function is applyed on - * the elements inside the list. Triggered on all method calls (create, read, + * Before reducers update the state, this transformer function is applyed on + * the elements inside the list. Triggered on all method calls (create, read, * readOne, update and remove). * * Usefull for enforcing common transformations on external data, sorting, etc.