From 3b912d171ce497d675853af518d332145aa2d2e0 Mon Sep 17 00:00:00 2001 From: Nyall Dawson Date: Tue, 27 Aug 2024 08:27:03 +1000 Subject: [PATCH] Apply suggestions from code review --- src/analysis/processing/qgsalgorithmfiledownloader.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/analysis/processing/qgsalgorithmfiledownloader.cpp b/src/analysis/processing/qgsalgorithmfiledownloader.cpp index 2910888e71e4..fec150b4529a 100644 --- a/src/analysis/processing/qgsalgorithmfiledownloader.cpp +++ b/src/analysis/processing/qgsalgorithmfiledownloader.cpp @@ -40,7 +40,7 @@ QString QgsFileDownloaderAlgorithm::displayName() const QString QgsFileDownloaderAlgorithm::shortDescription() const { - return tr( "Downloads a URL on the file system with an HTTP(S) GET or POST request" ); + return tr( "Downloads a URL to the file system with an HTTP(S) GET or POST request" ); } QStringList QgsFileDownloaderAlgorithm::tags() const @@ -60,7 +60,7 @@ QString QgsFileDownloaderAlgorithm::groupId() const QString QgsFileDownloaderAlgorithm::shortHelpString() const { - return tr( "This algorithm downloads a URL on the file system with an HTTP(S) GET or POST request" ); + return tr( "This algorithm downloads a URL to the file system with an HTTP(S) GET or POST request" ); } QgsFileDownloaderAlgorithm *QgsFileDownloaderAlgorithm::createInstance() const