From 34a2d3c73d27fc5962add5757a490fcc9fc4898d Mon Sep 17 00:00:00 2001 From: Christian Paul Date: Fri, 6 Feb 2026 20:11:55 +0100 Subject: [PATCH] Fix typo: observerd -> observed --- src/wot-device.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wot-device.ts b/src/wot-device.ts index 945f3f4..3e7332e 100644 --- a/src/wot-device.ts +++ b/src/wot-device.ts @@ -112,7 +112,7 @@ export default class WoTDevice extends Device { if (schProp.writeOnly === true) { return; } - // see if it can be observerd + // see if it can be observed if (schProp.observable && this.configuration.useObservable) { this.thing.observeProperty(property.getName(), (value) => { property.setCachedValueAndNotify(value);