Skip to content

Commit 1e79935

Browse files
committed
fix(cli-go): gofmt alignment after Long raw-string literal
Switching Long from a quoted string to a backtick literal changes column alignment; gofmt wants Args: with one space instead of two.
1 parent 7229075 commit 1e79935

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

apps/cli-go/cmd/branches.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ var (
8181
Long: `Retrieve details of the specified preview branch.
8282
8383
Note: For the main branch, password-dependent fields (POSTGRES_URL, POSTGRES_URL_NON_POOLING) are not populated because production database credentials are not retrievable via API.`,
84-
Args: cobra.MaximumNArgs(1),
84+
Args: cobra.MaximumNArgs(1),
8585
RunE: func(cmd *cobra.Command, args []string) error {
8686
ctx := cmd.Context()
8787
fsys := afero.NewOsFs()

0 commit comments

Comments
 (0)