From bb5843ec359d0a7e1383aa99430d325b12889e35 Mon Sep 17 00:00:00 2001 From: pancho horrillo Date: Sun, 20 Oct 2019 18:32:46 +0200 Subject: [PATCH] Fix lowercase ID in human-readable messages --- internal/cmd/get.go | 2 +- internal/cmd/set.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/cmd/get.go b/internal/cmd/get.go index d62a399..4efda82 100644 --- a/internal/cmd/get.go +++ b/internal/cmd/get.go @@ -29,5 +29,5 @@ var GetCmd = &cobra.Command{ func init() { GetCmd.Flags().String("data-url", getEnv("KAPOW_DATA_URL", "http://localhost:8082"), "Kapow! data interface URL") - GetCmd.Flags().String("handler", getEnv("KAPOW_HANDLER_ID", ""), "Kapow! handler id") + GetCmd.Flags().String("handler", getEnv("KAPOW_HANDLER_ID", ""), "Kapow! handler ID") } diff --git a/internal/cmd/set.go b/internal/cmd/set.go index 48176c0..b2a0ed6 100644 --- a/internal/cmd/set.go +++ b/internal/cmd/set.go @@ -39,5 +39,5 @@ var SetCmd = &cobra.Command{ func init() { SetCmd.Flags().String("data-url", getEnv("KAPOW_DATA_URL", "http://localhost:8082"), "Kapow! data interface URL") - SetCmd.Flags().String("handler", getEnv("KAPOW_HANDLER_ID", ""), "Kapow! handler id") + SetCmd.Flags().String("handler", getEnv("KAPOW_HANDLER_ID", ""), "Kapow! handler ID") }