Skip to content

Commit cfa9c7f

Browse files
bichikimktsn
authored andcommitted
docs(en): fix capital letter (#1223)
I am sorry for that :)
1 parent 4a0d959 commit cfa9c7f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/en/api.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ const store = new Vuex.Store({ ...options })
202202

203203
The first argument can optionally be a namespace string. [Details](modules.md#binding-helpers-with-namespace)
204204

205-
The Second object argument's members can be a function. `function(state: any)`
205+
The second object argument's members can be a function. `function(state: any)`
206206

207207
- **`mapGetters(namespace?: string, map: Array<string> | Object<string>): Object`**
208208

@@ -216,15 +216,15 @@ const store = new Vuex.Store({ ...options })
216216

217217
The first argument can optionally be a namespace string. [Details](modules.md#binding-helpers-with-namespace)
218218

219-
The Second object argument's members can be a function. `function(dispatch: function, ...args: any[])`
219+
The second object argument's members can be a function. `function(dispatch: function, ...args: any[])`
220220

221221
- **`mapMutations(namespace?: string, map: Array<string> | Object<string | function>): Object`**
222222

223223
Create component methods options that commit a mutation. [Details](mutations.md#committing-mutations-in-components)
224224

225225
The first argument can optionally be a namespace string. [Details](modules.md#binding-helpers-with-namespace)
226226

227-
The Second object argument's members can be a function. `function(commit: function, ...args: any[])`
227+
 The second object argument's members can be a function. `function(commit: function, ...args: any[])`
228228

229229
- **`createNamespacedHelpers(namespace: string): Object`**
230230

0 commit comments

Comments
 (0)