Merge pull request #2402 from metrix78/spelling

correct spelling on user is empty error.
This commit is contained in:
Daniel Molkentin 2014-10-26 21:52:03 -04:00
commit 24b07aaaef
2 changed files with 2 additions and 2 deletions

View File

@ -140,7 +140,7 @@ void help()
std::cout << binaryName << " - command line " APPLICATION_NAME " client tool" << std::endl;
std::cout << "" << std::endl;
std::cout << "Usage: " << binaryName << " <source_dir> <server_url>" << std::endl;
std::cout << "Usage: " << binaryName << " [OPTION] <source_dir> <server_url>" << std::endl;
std::cout << "" << std::endl;
std::cout << "A proxy can either be set manually using --httpproxy." << std::endl;
std::cout << "Otherwise, the setting from a configured sync client will be used." << std::endl;

View File

@ -28,7 +28,7 @@ QString AbstractCredentials::keychainKey(const QString &url, const QString &user
return QString::null;
}
if( user.isEmpty() ) {
qDebug() << "Error: User is emty!";
qDebug() << "Error: User is empty!";
return QString::null;
}