浏览代码

fixed misspelling (#882)

causes -> cause
Spencer Davies 7 年之前
父节点
当前提交
db6a77f806
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      examples/counter/store.js

+ 1 - 1
examples/counter/store.js

@@ -23,7 +23,7 @@ const mutations = {
   }
 }
 
-// actions are functions that causes side effects and can involve
+// actions are functions that cause side effects and can involve
 // asynchronous operations.
 const actions = {
   increment: ({ commit }) => commit('increment'),