From 4d480b87613cb00f29d3d3c7f8cf1be3b40305e2 Mon Sep 17 00:00:00 2001 From: luzpaz Date: Tue, 5 Oct 2021 00:58:25 -0400 Subject: [PATCH] Fix various typos Found via `codespell -q 3 -S *.ts`. PR #15520. --- src/gui/transferlistsortmodel.cpp | 2 +- src/searchengine/nova3/socks.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gui/transferlistsortmodel.cpp b/src/gui/transferlistsortmodel.cpp index a3826cabc..fcf9e31fd 100644 --- a/src/gui/transferlistsortmodel.cpp +++ b/src/gui/transferlistsortmodel.cpp @@ -222,7 +222,7 @@ int TransferListSortModel::compare(const QModelIndex &left, const QModelIndex &r } default: - Q_ASSERT_X(false, Q_FUNC_INFO, "Missing comparsion case"); + Q_ASSERT_X(false, Q_FUNC_INFO, "Missing comparison case"); break; } diff --git a/src/searchengine/nova3/socks.py b/src/searchengine/nova3/socks.py index 7905b29f0..889b88350 100644 --- a/src/searchengine/nova3/socks.py +++ b/src/searchengine/nova3/socks.py @@ -154,7 +154,7 @@ class socksocket(socket.socket): addr - The address of the server (IP or DNS). port - The port of the server. Defaults to 1080 for SOCKS servers and 8080 for HTTP proxy servers. - rdns - Should DNS queries be preformed on the remote side + rdns - Should DNS queries be performed on the remote side (rather than the local side). The default is True. Note: This has no effect with SOCKS4 servers. username - Username to authenticate with to the server.