Fix comment grammar

This commit is contained in:
Nyall Dawson 2024-07-15 09:46:53 +10:00
parent b9f6293bc7
commit c9d0d29d69
2 changed files with 3 additions and 3 deletions

View File

@ -160,11 +160,11 @@ class GrassProvider(QgsProcessingProvider):
return False return False
def supportedOutputVectorLayerExtensions(self): def supportedOutputVectorLayerExtensions(self):
# We use the same extensions than QGIS because: # We use the same extensions as QGIS because:
# - QGIS is using OGR like GRASS # - QGIS is using OGR like GRASS
# - There are very chances than OGR version used in GRASS is # - There are very chances than OGR version used in GRASS is
# different from QGIS OGR version. # different from QGIS OGR version.
return QgsVectorFileWriter.supportedFormatExtensions() return super().supportedOutputVectorLayerExtensions()
def supportedOutputRasterLayerExtensions(self): def supportedOutputRasterLayerExtensions(self):
return GrassUtils.getSupportedOutputRasterExtensions() return GrassUtils.getSupportedOutputRasterExtensions()

View File

@ -644,7 +644,7 @@ class GrassUtils:
@staticmethod @staticmethod
def getSupportedOutputRasterExtensions(): def getSupportedOutputRasterExtensions():
# We use the same extensions than GDAL because: # We use the same extensions as GDAL because:
# - GRASS is also using GDAL for raster imports. # - GRASS is also using GDAL for raster imports.
# - Chances that GRASS is compiled with another version of # - Chances that GRASS is compiled with another version of
# GDAL than QGIS are very limited! # GDAL than QGIS are very limited!