Kaynağa Gözat

docs: fix typo in comments (#1550)

Sai 5 yıl önce
ebeveyn
işleme
540b81f81e
1 değiştirilmiş dosya ile 1 ekleme ve 1 silme
  1. 1 1
      src/store.js

+ 1 - 1
src/store.js

@@ -257,7 +257,7 @@ function resetStoreVM (store, state, hot) {
   forEachValue(wrappedGetters, (fn, key) => {
     // use computed to leverage its lazy-caching mechanism
     // direct inline function use will lead to closure preserving oldVm.
-    // using partial to return function with only arguments preserved in closure enviroment.
+    // using partial to return function with only arguments preserved in closure environment.
     computed[key] = partial(fn, store)
     Object.defineProperty(store.getters, key, {
       get: () => store._vm[key],