diff --git a/src/bindable-property.js b/src/bindable-property.js index ea5753a0..528bc7ef 100644 --- a/src/bindable-property.js +++ b/src/bindable-property.js @@ -139,7 +139,7 @@ export class BindableProperty { } else if ('propertyChanged' in viewModel) { selfSubscriber = (newValue, oldValue) => viewModel.propertyChanged(name, newValue, oldValue); } else if (changeHandlerName !== null) { - throw new Error(`Change handler ${changeHandlerName} was specified but not delcared on the class.`); + throw new Error(`Change handler ${changeHandlerName} was specified but not declared on the class.`); } if (defaultValue !== undefined) {