From 5fbd0ffbe9826876b95adc316c84557009428384 Mon Sep 17 00:00:00 2001 From: Eduardo Ramos Testillano Date: Sat, 25 Apr 2015 20:19:45 +0200 Subject: [PATCH] Change use per usage --- example/time/conversor/main.cpp | 2 +- source/core/util/CommandLine.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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() << " "; -- 2.20.1