diff --git a/src/analysis/processing/qgsalgorithmcheckgeometryangle.cpp b/src/analysis/processing/qgsalgorithmcheckgeometryangle.cpp index 5a7608c8c4f..4ce490746a7 100644 --- a/src/analysis/processing/qgsalgorithmcheckgeometryangle.cpp +++ b/src/analysis/processing/qgsalgorithmcheckgeometryangle.cpp @@ -86,7 +86,7 @@ void QgsGeometryCheckAngleAlgorithm::initAlgorithm( const QVariantMap &configura QStringLiteral( "UNIQUE_ID" ), QObject::tr( "Unique feature identifier" ), QString(), QStringLiteral( "INPUT" ) ) ); addParameter( new QgsProcessingParameterNumber( - QStringLiteral( "MIN_ANGLE" ), QObject::tr( "Minimum angle" ), Qgis::ProcessingNumberParameterType::Double, 0, false, 0.0, 180.0 + QStringLiteral( "MIN_ANGLE" ), QObject::tr( "Minimum angle (in degrees)" ), Qgis::ProcessingNumberParameterType::Double, 0, false, 0.0, 180.0 ) ); // outputs diff --git a/src/analysis/processing/qgsalgorithmcheckgeometrysliverpolygon.cpp b/src/analysis/processing/qgsalgorithmcheckgeometrysliverpolygon.cpp index 0bb918d88d9..766686682ee 100644 --- a/src/analysis/processing/qgsalgorithmcheckgeometrysliverpolygon.cpp +++ b/src/analysis/processing/qgsalgorithmcheckgeometrysliverpolygon.cpp @@ -63,7 +63,7 @@ QString QgsGeometryCheckSliverPolygonAlgorithm::shortHelpString() const "The thinness value is between 1 and +infinity.\n" "If a polygon has an area higher than the maximum area, it is skipped (a maximum area value of 0 means no area check).\n\n" "Polygons having a thinness higher than the maximum thinness are errors.\n\n" - "To fix sliver polygons, use the \"Fix geometry (Area)\" processing." ); + "To fix sliver polygons, use the \"Fix small polygons\" processing." ); } Qgis::ProcessingAlgorithmFlags QgsGeometryCheckSliverPolygonAlgorithm::flags() const