Procházet zdrojové kódy

fixed misspelling (#882)

causes -> cause
Spencer Davies před 8 roky
rodič
revize
db6a77f806
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  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'),