From c013738c70eab78f878f6976e2d3ac20e37987bb Mon Sep 17 00:00:00 2001 From: Anika Tabassum <1936040+atabas@users.noreply.github.com> Date: Sat, 27 Oct 2018 05:30:37 -0400 Subject: [PATCH] Fix grammatical errors in Redux actions document (#20037) --- guide/english/redux/redux-actions/index.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/guide/english/redux/redux-actions/index.md b/guide/english/redux/redux-actions/index.md index fee7513f77..4446e51ee2 100644 --- a/guide/english/redux/redux-actions/index.md +++ b/guide/english/redux/redux-actions/index.md @@ -4,8 +4,7 @@ title: Redux Actions ## Redux Actions Redux action is a simple object that describes what sort of event has happened in your application. They can even contain -data that needs to be send from the application to the Redux store. Action can contain anything but it must have a mandatory -type property which describes the event taking place. A good practice is to use constants while describing the action. +data that needs to be sent from the application to the Redux store. An action can contain anything but it must have a mandatory type property which describes the event taking place. A good practice is to use constants while describing the action. For example @@ -23,7 +22,7 @@ We can send these actions to the store by using ```javascript store.dispatch() ``` -An application can have different sorts of events happening at a time and these actions helps describe these events. Without these actions there is no way to change the state of the application. +An application can have different sorts of events happening at a time and these actions help describe these events. Without these actions there is no way to change the state of the application. You might try [redux-actions](https://github.com/redux-utilities/redux-actions) project that reduces lot of boilerplate making writing your actions way faster.