Skip to content

Commit

Permalink
Merge pull request #412 from ryan-blunden/master
Browse files Browse the repository at this point in the history
chore: all commands help text is now sentence case
  • Loading branch information
Piccirello authored Jul 1, 2023
2 parents 44e5397 + d7cb8c8 commit c072aee
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pkg/cmd/changelog.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import (

var changelogCmd = &cobra.Command{
Use: "changelog",
Short: "view the CLI's changelog",
Short: "View the CLI's changelog",
Args: cobra.NoArgs,
Run: func(cmd *cobra.Command, args []string) {
number := utils.GetIntFlag(cmd, "number", 16)
Expand Down
4 changes: 2 additions & 2 deletions pkg/cmd/open.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import (

var openCmd = &cobra.Command{
Use: "open",
Short: "open the Doppler dashboard",
Short: "Open the Doppler dashboard",
Args: cobra.NoArgs,
Run: func(cmd *cobra.Command, args []string) {
localConfig := configuration.LocalConfig(cmd)
Expand All @@ -38,7 +38,7 @@ var openCmd = &cobra.Command{

var openDashboardCmd = &cobra.Command{
Use: "dashboard",
Short: "open the Doppler dashboard",
Short: "Open the Doppler dashboard",
Args: cobra.NoArgs,
Run: func(cmd *cobra.Command, args []string) {
localConfig := configuration.LocalConfig(cmd)
Expand Down
2 changes: 1 addition & 1 deletion pkg/cmd/update.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ import (

var updateCmd = &cobra.Command{
Use: "update",
Short: "update the Doppler CLI",
Short: "Update the Doppler CLI",
Args: cobra.NoArgs,
Run: func(cmd *cobra.Command, args []string) {
if !utils.CanUpdate() {
Expand Down

0 comments on commit c072aee

Please sign in to comment.