Skip to content

Commit 277f74e

Browse files
committed
fix minor formatting issue
1 parent a00c765 commit 277f74e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cd_command.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
void CdCommand::execute(const std::string& args) {
66
if (chdir(args.c_str()) != 0) {
7-
std::cerr << "cd " << args << ": No such file or directory" << std::endl;
7+
std::cerr << "cd: " << args << ": No such file or directory" << std::endl;
88
}
99
}
1010

0 commit comments

Comments
 (0)