From: Brian Warner Date: Mon, 18 Oct 2021 11:22:39 +0000 (-0400) Subject: [openhabcloud] Spelling fix (#11404) X-Git-Url: https://git.basschouten.com/?a=commitdiff_plain;h=a1170737f18be2d7eaeb2107a8bd0c16a2b0f895;p=openhab-addons.git [openhabcloud] Spelling fix (#11404) This is a very minor spelling fix for openhabcloud. In some cases, "Notification" was spelled "Notificaton". There are no other changes. Signed-off-by: Brian Warner --- diff --git a/bundles/org.openhab.io.openhabcloud/src/main/java/org/openhab/io/openhabcloud/internal/actions/NotificationActionTypeProvider.java b/bundles/org.openhab.io.openhabcloud/src/main/java/org/openhab/io/openhabcloud/internal/actions/NotificationActionTypeProvider.java index 0f160be39b..5738137115 100644 --- a/bundles/org.openhab.io.openhabcloud/src/main/java/org/openhab/io/openhabcloud/internal/actions/NotificationActionTypeProvider.java +++ b/bundles/org.openhab.io.openhabcloud/src/main/java/org/openhab/io/openhabcloud/internal/actions/NotificationActionTypeProvider.java @@ -40,20 +40,20 @@ import org.osgi.service.component.annotations.Component; public class NotificationActionTypeProvider implements ModuleTypeProvider { private static final ModuleType SEND_NOTIFICATION_ACTION = new ActionType(SendNotificationActionHandler.TYPE_ID, - getSendNotificationConfig(false, null), "send a notificaton", + getSendNotificationConfig(false, null), "send a notification", "Sends a notification to a specific cloud user.", null, Visibility.VISIBLE, null, null); private static final ModuleType SEND_EXTENDED_NOTIFICATION_ACTION = new ActionType( SendNotificationActionHandler.EXTENDED_TYPE_ID, getSendNotificationConfig(true, null), - "send a notificaton with icon and severity", + "send a notification with icon and severity", "Sends a notification to a specific cloud user. Optionally add an icon or the severity.", null, Visibility.VISIBLE, null, null); private static final ModuleType SEND_BROADCAST_NOTIFICATION_ACTION = new ActionType( SendBroadcastNotificationActionHandler.TYPE_ID, getNotificationConfig(false, null), - "broadcast a notificaton", "Sends a notification to all devices of all users.", null, Visibility.VISIBLE, + "broadcast a notification", "Sends a notification to all devices of all users.", null, Visibility.VISIBLE, null, null); private static final ModuleType SEND_EXRENDED_BROADCAST_NOTIFICATION_ACTION = new ActionType( SendBroadcastNotificationActionHandler.EXTENDED_TYPE_ID, getNotificationConfig(true, null), - "broadcast a notificaton with icon and severity", + "broadcast a notification with icon and severity", "Sends a notification to all devices of all users. Optionally add an icon or the severity.", null, Visibility.VISIBLE, null, null); private static final ModuleType SEND_LOG_NOTIFICATION_ACTION = new ActionType(