diff options
author | Dennis Tang <dennis@dennistang.net> | 2018-05-11 12:39:32 +0000 |
---|---|---|
committer | Dennis Tang <dennis@dennistang.net> | 2018-05-11 12:39:32 +0000 |
commit | 1a12471d315fac6e4d6a12ffa4f3331c29017602 (patch) | |
tree | 669bfda7d55fe822fe4a64c3fc9e3df5a188cfee /doc/development/fe_guide | |
parent | e665169a94a855d7eb45924d8c6ec602578447dd (diff) | |
download | gitlab-ce-1a12471d315fac6e4d6a12ffa4f3331c29017602.tar.gz |
fix typo
Diffstat (limited to 'doc/development/fe_guide')
-rw-r--r-- | doc/development/fe_guide/vuex.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/development/fe_guide/vuex.md b/doc/development/fe_guide/vuex.md index 95636153805..0335109366a 100644 --- a/doc/development/fe_guide/vuex.md +++ b/doc/development/fe_guide/vuex.md @@ -68,7 +68,7 @@ Often we need to provide data from haml to our Vue application. Let's store it i You can use `mapState` to access state properties in the components. ### `actions.js` -An action is a playload of information to send data from our application to our store. +An action is a payload of information to send data from our application to our store. An action is usually composed by a `type` and a `payload` and they describe what happened. Enforcing that every change is described as an action lets us have a clear understanting of what is going on in the app. |