Skip to content

Commit 8ffa4ac

Browse files
committed
[processing] fix typo in the algorithm name (fix #12227)
1 parent 466fe70 commit 8ffa4ac

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

python/plugins/processing/algs/qgis/QGISAlgorithmProvider.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
from processing.script.ScriptUtils import ScriptUtils
4040

4141
from RegularPoints import RegularPoints
42-
from SymetricalDifference import SymetricalDifference
42+
from SymmetricalDifference import SymmetricalDifference
4343
from VectorSplit import VectorSplit
4444
from VectorGrid import VectorGrid
4545
from RandomExtract import RandomExtract
@@ -152,7 +152,7 @@ def __init__(self):
152152
RandomSelection(), RandomSelectionWithinSubsets(),
153153
SelectByLocation(), RandomExtract(),
154154
RandomExtractWithinSubsets(), ExtractByLocation(),
155-
SpatialJoin(), RegularPoints(), SymetricalDifference(),
155+
SpatialJoin(), RegularPoints(), SymmetricalDifference(),
156156
VectorSplit(), VectorGrid(), DeleteColumn(),
157157
DeleteDuplicateGeometries(), TextToFloat(),
158158
ExtractByAttribute(), SelectByAttribute(), Grid(),

python/plugins/processing/algs/qgis/SymetricalDifference.py renamed to python/plugins/processing/algs/qgis/SymmetricalDifference.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,14 +33,14 @@
3333
from processing.tools import dataobjects, vector
3434

3535

36-
class SymetricalDifference(GeoAlgorithm):
36+
class SymmetricalDifference(GeoAlgorithm):
3737

3838
INPUT = 'INPUT'
3939
OVERLAY = 'OVERLAY'
4040
OUTPUT = 'OUTPUT'
4141

4242
def defineCharacteristics(self):
43-
self.name = 'Symetrical difference'
43+
self.name = 'Symmetrical difference'
4444
self.group = 'Vector overlay tools'
4545
self.addParameter(ParameterVector(self.INPUT,
4646
self.tr('Input layer'), [ParameterVector.VECTOR_TYPE_ANY]))

0 commit comments

Comments
 (0)