Bläddra i källkod

docs(en): fix capital letter (#1223)

I am sorry for that :)
Bichi Kim 7 år sedan
förälder
incheckning
cfa9c7f2ac
1 ändrade filer med 3 tillägg och 3 borttagningar
  1. 3 3
      docs/en/api.md

+ 3 - 3
docs/en/api.md

@@ -202,7 +202,7 @@ const store = new Vuex.Store({ ...options })
 
   The first argument can optionally be a namespace string. [Details](modules.md#binding-helpers-with-namespace)
   
-  The Second object argument's members can be a function. `function(state: any)` 
+  The second object argument's members can be a function. `function(state: any)` 
 
 - **`mapGetters(namespace?: string, map: Array<string> | Object<string>): Object`**
 
@@ -216,7 +216,7 @@ const store = new Vuex.Store({ ...options })
 
   The first argument can optionally be a namespace string. [Details](modules.md#binding-helpers-with-namespace)
   
-  The Second object argument's members can be a function. `function(dispatch: function, ...args: any[])`
+  The second object argument's members can be a function. `function(dispatch: function, ...args: any[])`
 
 - **`mapMutations(namespace?: string, map: Array<string> | Object<string | function>): Object`**
 
@@ -224,7 +224,7 @@ const store = new Vuex.Store({ ...options })
 
   The first argument can optionally be a namespace string. [Details](modules.md#binding-helpers-with-namespace)
   
-  The Second object argument's members can be a function. `function(commit: function, ...args: any[])`
+  The second object argument's members can be a function. `function(commit: function, ...args: any[])`
 
 - **`createNamespacedHelpers(namespace: string): Object`**