Skip to content

Commit

Permalink
Fix description of k-nearest output layer
Browse files Browse the repository at this point in the history
The output layer may have multiple features  - rewording to be more general.
  • Loading branch information
rudivs committed Aug 15, 2018
1 parent 52ccc43 commit 0a1d3e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/qgis/KNearestConcaveHull.py
Expand Up @@ -90,7 +90,7 @@ def initAlgorithm(self, config=None):
self.addParameter(QgsProcessingParameterField(self.FIELD,
self.tr('Field (optional, set if creating concave hulls by class)'),
parentLayerParameterName=self.INPUT, optional=True))
self.addParameter(QgsProcessingParameterFeatureSink(self.OUTPUT, self.tr('Bounding geometry'),
self.addParameter(QgsProcessingParameterFeatureSink(self.OUTPUT, self.tr('Output layer'),
QgsProcessing.TypeVectorPolygon))

def processAlgorithm(self, parameters, context, feedback):
Expand Down

0 comments on commit 0a1d3e7

Please sign in to comment.