From c82c213c75393110b71597251dec272bf70f8c1f Mon Sep 17 00:00:00 2001 From: ytimocin Date: Fri, 20 Sep 2024 17:42:19 -0700 Subject: [PATCH] Fix a typo Signed-off-by: ytimocin --- cmd/stop.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/stop.go b/cmd/stop.go index fe2141092..dd76baf13 100644 --- a/cmd/stop.go +++ b/cmd/stop.go @@ -98,7 +98,7 @@ dapr stop --run-file /path/to/directory -k func init() { StopCmd.Flags().StringVarP(&stopAppID, "app-id", "a", "", "The application id to be stopped") StopCmd.Flags().StringVarP(&runFilePath, "run-file", "f", "", "Path to the run template file for the list of apps to stop") - StopCmd.Flags().BoolVarP(&stopK8s, "kubernetes", "k", false, "Stop deployments in Kunernetes based on multi-app run file") + StopCmd.Flags().BoolVarP(&stopK8s, "kubernetes", "k", false, "Stop deployments in Kubernetes based on multi-app run file") StopCmd.Flags().BoolP("help", "h", false, "Print this help message") RootCmd.AddCommand(StopCmd) }