aboutsummaryrefslogtreecommitdiff
path: root/commands/cd.go
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2019-03-15 10:47:27 -0400
committerDrew DeVault <sir@cmpwn.com>2019-03-15 10:47:27 -0400
commit22f453f56a18da91c987baa3a47fa91f666d8b7a (patch)
treee19b3dd0c5b15e2524ada7db1aaefaa162315c7f /commands/cd.go
parent513e8aa94b5a95698453250bc514b333b1768a6c (diff)
Fix help string for :cd
Diffstat (limited to 'commands/cd.go')
-rw-r--r--commands/cd.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/commands/cd.go b/commands/cd.go
index 52d5b49..6e3da39 100644
--- a/commands/cd.go
+++ b/commands/cd.go
@@ -18,7 +18,7 @@ func init() {
func ChangeDirectory(aerc *widgets.Aerc, args []string) error {
if len(args) != 2 {
- return errors.New("Usage: cf <directory>")
+ return errors.New("Usage: cd <directory>")
}
cwd, err := os.Getwd()
if err != nil {