From 85d4a3d7b1b3da75a4aea3a17230d0a90fcb4706 Mon Sep 17 00:00:00 2001 From: Dmitry Kurmanov Date: Thu, 27 Sep 2018 19:51:08 +0300 Subject: [PATCH] Update store.js --- store.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/store.js b/store.js index 9405ccb0d0..84b0ba4595 100644 --- a/store.js +++ b/store.js @@ -162,7 +162,7 @@ assign(Store.prototype, { let dirty = false; for (const key in newState) { - if (this._computed[key]) throw new Error(`'${key}' is a read-only property`); + if (this._computed[key]) throw new Error(`'${key}' is a read-only computed property`); if (this._differs(newState[key], oldState[key])) changed[key] = dirty = true; } if (!dirty) return;