From: Eduardo Ramos Testillano Date: Sat, 25 Apr 2015 18:19:45 +0000 (+0200) Subject: Change use per usage X-Git-Tag: REFACTORING_TESTING_LIBRARY~148 X-Git-Url: https://git.teslayout.com/public/public/public/?p=anna.git;a=commitdiff_plain;h=5fbd0ffbe9826876b95adc316c84557009428384 Change use per usage --- diff --git a/example/time/conversor/main.cpp b/example/time/conversor/main.cpp index 9f6a998..de4ee34 100644 --- a/example/time/conversor/main.cpp +++ b/example/time/conversor/main.cpp @@ -33,7 +33,7 @@ int main(int argc, char** argv) { // option if (!argv[1]) { - std::string msg = "Use: "; + std::string msg = "Usage: "; msg += argv[0]; msg += " [-unix ] [-ntp ] [-yyyymmddHHmmss ]"; F_exit(msg.c_str()); diff --git a/source/core/util/CommandLine.cpp b/source/core/util/CommandLine.cpp index 9c495e7..85d171d 100644 --- a/source/core/util/CommandLine.cpp +++ b/source/core/util/CommandLine.cpp @@ -268,7 +268,7 @@ throw() { void CommandLine::printUsage() const throw() { int i, maxi(a_arguments.size()); - cout << "Use: " << a_argv [0] << " "; + cout << "Usage: " << a_argv [0] << " "; for(i = 0; i < maxi; i ++) cout << a_arguments [i]->asString() << " ";