From d52aa8985079e59a31e54f23208a9c5250cea4a0 Mon Sep 17 00:00:00 2001 From: Bernard Normier Date: Fri, 11 Aug 2006 20:22:11 +0000 Subject: Bug fixes --- cpp/demo/Database/Oracle/proc/Client.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'cpp/demo/Database/Oracle/proc/Client.cpp') diff --git a/cpp/demo/Database/Oracle/proc/Client.cpp b/cpp/demo/Database/Oracle/proc/Client.cpp index af09a5a8de0..72067ef783d 100644 --- a/cpp/demo/Database/Oracle/proc/Client.cpp +++ b/cpp/demo/Database/Oracle/proc/Client.cpp @@ -59,7 +59,7 @@ HRClient::HRClient() : "dept : set department as the current department\n" "emp : set employee as the current employee\n" "exit: exit client\n" - "help: prints this list of commands\n" + "help: print this list of commands\n" "root: go back to the root menu\n"; _rootCommands = @@ -114,7 +114,8 @@ HRClient::checkCin(const string& command) const void HRClient::invalidCommand(const string& command) const { - cout << "Invalid command '" << command << "'" << endl; + cout << "Invalid command '" << command << "'. " + "Type 'help' for help." << endl; cin.ignore(numeric_limits::max(), '\n'); } -- cgit v1.2.3