Change use per usage
authorEduardo Ramos Testillano <eduardo.ramos.testillano@ericsson.com>
Sat, 25 Apr 2015 18:19:45 +0000 (20:19 +0200)
committerEduardo Ramos Testillano <eduardo.ramos.testillano@ericsson.com>
Sat, 25 Apr 2015 18:19:45 +0000 (20:19 +0200)
example/time/conversor/main.cpp
source/core/util/CommandLine.cpp

index 9f6a998..de4ee34 100644 (file)
@@ -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 <unix timestamp>] [-ntp <ntp timestamp>] [-yyyymmddHHmmss <yyyymmddHHmmss (in the system timezone)>]";
       F_exit(msg.c_str());
index 9c495e7..85d171d 100644 (file)
@@ -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() << " ";