mirror of
https://github.com/nextcloud/desktop.git
synced 2025-10-26 11:17:43 +00:00
Merge pull request #2402 from metrix78/spelling
correct spelling on user is empty error.
This commit is contained in:
commit
24b07aaaef
@ -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;
|
||||
|
||||
@ -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;
|
||||
}
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user