Skip to content

Commit 896a37b

Browse files
committed
fix: Change diff suggestions for more natural sentence
1 parent c6453cb commit 896a37b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cli/configssh.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,7 @@ func configSSH() *cobra.Command {
357357
// configuration, so we output the entire command.
358358
diffCommand := fmt.Sprintf("$ %s %s", cmd.CommandPath(), strings.Join(append(coderConfig.asArgs(), "--diff"), " "))
359359
_, err = cliui.Prompt(cmd, cliui.PromptOptions{
360-
Text: fmt.Sprintf("The following changes will be made to your SSH configuration:\n\n * %s\n\n To see changes, run with --diff:\n\n %s\n\n Continue?", strings.Join(changes, "\n * "), diffCommand),
360+
Text: fmt.Sprintf("The following changes will be made to your SSH configuration:\n\n * %s\n\n To see changes, run diff:\n\n %s\n\n Continue?", strings.Join(changes, "\n * "), diffCommand),
361361
IsConfirm: true,
362362
})
363363
if err != nil {

0 commit comments

Comments
 (0)