浏览代码

Fix typo and update tense (#1457)

Flamenco 6 年之前
父节点
当前提交
c92cef3490
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/helpers.js

+ 1 - 1
src/helpers.js

@@ -64,7 +64,7 @@ export const mapMutations = normalizeNamespace((namespace, mutations) => {
 export const mapGetters = normalizeNamespace((namespace, getters) => {
   const res = {}
   normalizeMap(getters).forEach(({ key, val }) => {
-    // thie namespace has been mutate by normalizeNamespace
+    // The namespace has been mutated by normalizeNamespace
     val = namespace + val
     res[key] = function mappedGetter () {
       if (namespace && !getModuleByNamespace(this.$store, 'mapGetters', namespace)) {