Skip to content

Commit 811fab3

Browse files
authored
Remove two stray characters in messages (#2805)
1 parent f8261c1 commit 811fab3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

internal/command/command.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -580,7 +580,7 @@ func appConfigFilePaths(ctx context.Context) (paths []string) {
580580
return
581581
}
582582

583-
var ErrRequireAppName = fmt.Errorf("the config for your app is missing an app name, add an app field to the fly.toml file or specify with the -a flag`")
583+
var ErrRequireAppName = fmt.Errorf("the config for your app is missing an app name, add an app field to the fly.toml file or specify with the -a flag")
584584

585585
// RequireAppName is a Preparer which makes sure the user has selected an
586586
// application name via command line arguments, the environment or an application

internal/command/ssh/sftp.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ func NewSFTP() *cobra.Command {
4444

4545
func newSFTPShell() *cobra.Command {
4646
const (
47-
long = `The SFTP SHELL command brings up an interactive SFTP session to fetch and push files from/to a VM:.`
47+
long = `The SFTP SHELL command brings up an interactive SFTP session to fetch and push files from/to a VM.`
4848
short = long
4949
usage = "shell"
5050
)

0 commit comments

Comments
 (0)