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;