From 83fdc07df0e2acc53ee8c363a15b6b6638e99616 Mon Sep 17 00:00:00 2001 From: Norbert Rittel Date: Fri, 20 Dec 2024 15:15:16 +0100 Subject: [PATCH] Fix inconsistent spelling of "PIN" vs. "pin" (#133655) As "PIN" is an abbreviation it should be all-caps throughout the UI. This commit fixes two inconsistent occurrences in the invoke_pin action. --- homeassistant/components/openhome/strings.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/homeassistant/components/openhome/strings.json b/homeassistant/components/openhome/strings.json index b13fb997b7f..a757a2cb31c 100644 --- a/homeassistant/components/openhome/strings.json +++ b/homeassistant/components/openhome/strings.json @@ -2,11 +2,11 @@ "services": { "invoke_pin": { "name": "Invoke PIN", - "description": "Invokes a pin on the specified device.", + "description": "Invokes a PIN on the specified device.", "fields": { "pin": { "name": "PIN", - "description": "Which pin to invoke." + "description": "Which PIN to invoke." } } }