From 8278f9bbdee1d53ccfb2f96dfb14e06f41f399d6 Mon Sep 17 00:00:00 2001 From: Andrew Mason Date: Wed, 27 Sep 2023 02:35:41 -0400 Subject: [PATCH] switch casing in onlineddl subcommand help text (#14091) Signed-off-by: Andrew Mason --- go/cmd/vtctldclient/command/onlineddl.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/go/cmd/vtctldclient/command/onlineddl.go b/go/cmd/vtctldclient/command/onlineddl.go index 660f41f60b3..dbe927de2bf 100644 --- a/go/cmd/vtctldclient/command/onlineddl.go +++ b/go/cmd/vtctldclient/command/onlineddl.go @@ -48,7 +48,7 @@ var ( } OnlineDDLCancel = &cobra.Command{ Use: "cancel ", - Short: "cancel one or all migrations, terminating any running ones as needed.", + Short: "Cancel one or all migrations, terminating any running ones as needed.", Example: "OnlineDDL cancel test_keyspace 82fa54ac_e83e_11ea_96b7_f875a4d24e90", DisableFlagsInUseLine: true, Args: cobra.ExactArgs(2), @@ -64,7 +64,7 @@ var ( } OnlineDDLComplete = &cobra.Command{ Use: "complete ", - Short: "complete one or all migrations executed with --postpone-completion", + Short: "Complete one or all migrations executed with --postpone-completion", Example: "OnlineDDL complete test_keyspace 82fa54ac_e83e_11ea_96b7_f875a4d24e90", DisableFlagsInUseLine: true, Args: cobra.ExactArgs(2), @@ -72,7 +72,7 @@ var ( } OnlineDDLLaunch = &cobra.Command{ Use: "launch ", - Short: "launch one or all migrations executed with --postpone-launch", + Short: "Launch one or all migrations executed with --postpone-launch", Example: "OnlineDDL launch test_keyspace 82fa54ac_e83e_11ea_96b7_f875a4d24e90", DisableFlagsInUseLine: true, Args: cobra.ExactArgs(2),