summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFilipa Lacerda <filipa@gitlab.com>2018-06-21 07:24:03 +0000
committerFilipa Lacerda <filipa@gitlab.com>2018-06-21 07:24:03 +0000
commite93cffa8db085c479252d8a4fd49b7338a3bcc54 (patch)
tree610d3583d4543c2898a448b7009984316c2fe509
parent2e71a0e9cafde6815a2ad416d0f529451d3d986f (diff)
parentdc90eaf17ce98b3430fbc174e3704aca802209f5 (diff)
downloadgitlab-ce-e93cffa8db085c479252d8a4fd49b7338a3bcc54.tar.gz
Merge branch 'MadLittleMods-master-patch-55656' into 'master'
Fix a couple Vuex typos See merge request gitlab-org/gitlab-ce!20046
-rw-r--r--doc/development/fe_guide/vuex.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/development/fe_guide/vuex.md b/doc/development/fe_guide/vuex.md
index 858b03c60bf..4089cd37d73 100644
--- a/doc/development/fe_guide/vuex.md
+++ b/doc/development/fe_guide/vuex.md
@@ -78,7 +78,7 @@ In this file, we will write the actions that will call the respective mutations:
```javascript
import * as types from './mutation_types';
- import axios from '~/lib/utils/axios-utils';
+ import axios from '~/lib/utils/axios_utils';
import createFlash from '~/flash';
export const requestUsers = ({ commit }) => commit(types.REQUEST_USERS);
@@ -214,7 +214,7 @@ import { mapGetters } from 'vuex';
};
```
-### `mutations_types.js`
+### `mutation_types.js`
From [vuex mutations docs][vuex-mutations]:
> It is a commonly seen pattern to use constants for mutation types in various Flux implementations. This allows the code to take advantage of tooling like linters, and putting all constants in a single file allows your collaborators to get an at-a-glance view of what mutations are possible in the entire application.