aboutsummaryrefslogtreecommitdiff
path: root/cmd/myshell/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/myshell/main.go')
-rw-r--r--cmd/myshell/main.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/myshell/main.go b/cmd/myshell/main.go
index 65d2eb4..4609ce7 100644
--- a/cmd/myshell/main.go
+++ b/cmd/myshell/main.go
@@ -60,7 +60,7 @@ func Cd(dir string) {
err := os.Chdir(p)
if err != nil {
- fmt.Printf("cd: %s: No such file or directory\n", p)
+ fmt.Printf("%s: No such file or directory\n", p)
}
}