From 53fd7ad165f59dd9098355b9e0908c2a1d11e2c9 Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Tue, 10 Dec 2024 10:18:41 +0100 Subject: [PATCH] Fix URL mismatch for unit_for_measurement (#3324) --- .../src/schemas/integrations/core/homeassistant.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/language-service/src/schemas/integrations/core/homeassistant.ts b/src/language-service/src/schemas/integrations/core/homeassistant.ts index 0b89b337a4..669af10f77 100644 --- a/src/language-service/src/schemas/integrations/core/homeassistant.ts +++ b/src/language-service/src/schemas/integrations/core/homeassistant.ts @@ -195,7 +195,7 @@ interface CoreCustomizeItem { /** * Defines the units of measurement, if any. This will also influence the graphical presentation in the history visualization as continuous value. Sensors with missing unit_of_measurement are showing as discrete values. - * https://wwww.home-assistant.io/docs/configuration/customizing-devices/#unit_of_measurement + * https://www.home-assistant.io/docs/configuration/customizing-devices/#unit_of_measurement */ unit_of_measurement?: string; }