diff --git a/src/analysis/processing/qgsalgorithmconcavehull.cpp b/src/analysis/processing/qgsalgorithmconcavehull.cpp index 38612666564..4a852de7b02 100644 --- a/src/analysis/processing/qgsalgorithmconcavehull.cpp +++ b/src/analysis/processing/qgsalgorithmconcavehull.cpp @@ -191,7 +191,7 @@ void QgsConcaveHullAlgorithm::concaveHullQgis( std::unique_ptr< QgsFeatureSink > const QgsProcessingAlgorithm *delaunayAlg = QgsApplication::processingRegistry()->algorithmById( QStringLiteral( "native:delaunaytriangulation" ) ); if ( !delaunayAlg ) { - feedback->reportError( QObject::tr( "Failed to compute concave hull: Delaunay triangualation algorithm not found!" ), true ); + feedback->reportError( QObject::tr( "Failed to compute concave hull: Delaunay triangulation algorithm not found!" ), true ); } std::unique_ptr< QgsProcessingAlgorithm > algorithm; algorithm.reset( delaunayAlg->create() );