about summary refs log tree commit diff stats
path: root/commands/cd.go
diff options
context:
space:
mode:
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 {