Skip to content

Commit

Permalink
Fix strings
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson authored and github-actions[bot] committed Oct 5, 2023
1 parent b8391d0 commit 861f6e8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions python/plugins/processing/algs/help/qgis.yaml
Expand Up @@ -64,9 +64,9 @@ qgis:eliminateselectedpolygons: >
Eliminate is normally used to get rid of sliver polygons, i.e. tiny polygons that are a result of polygon intersection processes where boundaries of the inputs are similar but not identical.

qgis:executesql: >
Runs a simple or complex query with SQL syntax on the source layer.
Runs a simple or complex query with SQL syntax.

Input datasources are identified with input1, input2, ..., inputN and a simple query will look like: SELECT * FROM input1
Input data sources are identified with input1, input2, ..., inputN and a simple query will look like: SELECT * FROM input1

The result of the query will be added as a new layer.

Expand Down
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/qgis/ExecuteSQL.py
Expand Up @@ -83,7 +83,7 @@ def flags(self):

def initAlgorithm(self, config=None):
self.addParameter(QgsProcessingParameterMultipleLayers(name=self.INPUT_DATASOURCES,
description=self.tr('Additional input datasources (called input1, .., inputN in the query)'),
description=self.tr('Input data sources (called input1, .., inputN in the query)'),
optional=True))

self.addParameter(ParameterExecuteSql(name=self.INPUT_QUERY, description=self.tr('SQL query')))
Expand Down

0 comments on commit 861f6e8

Please sign in to comment.