diff --git a/src/cmd/cmd.cpp b/src/cmd/cmd.cpp index 877e8fd4b0..4fd975f82e 100644 --- a/src/cmd/cmd.cpp +++ b/src/cmd/cmd.cpp @@ -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 << " " << std::endl; + std::cout << "Usage: " << binaryName << " [OPTION] " << 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; diff --git a/src/libsync/creds/abstractcredentials.cpp b/src/libsync/creds/abstractcredentials.cpp index b248b39f59..c8b8b39bba 100644 --- a/src/libsync/creds/abstractcredentials.cpp +++ b/src/libsync/creds/abstractcredentials.cpp @@ -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; }