2
0
mirror of https://github.com/telegramdesktop/tdesktop synced 2025-08-31 22:46:10 +00:00

Fix a couple of typos

Signed-off-by: Nicholas Guriev <guriev-ns@ya.ru> (github: mymedia2)
This commit is contained in:
Nicholas Guriev
2017-07-07 00:44:37 +03:00
committed by John Preston
parent 94e43f8f8a
commit 38a53687a0
4 changed files with 4 additions and 4 deletions

View File

@@ -96,7 +96,7 @@ void SpecialConfigRequest::dnsFinished() {
auto error = QJsonParseError { 0, QJsonParseError::NoError };
auto document = QJsonDocument::fromJson(result, &error);
if (error.error != QJsonParseError::NoError) {
LOG(("Config Error: Faild to parse dns response JSON, error: %1").arg(error.errorString()));
LOG(("Config Error: Failed to parse dns response JSON, error: %1").arg(error.errorString()));
} else if (!document.isObject()) {
LOG(("Config Error: Not an object received in dns response JSON."));
} else {