Skip to content

Commit

Permalink
Fix comment grammar
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson authored and github-actions[bot] committed Jul 15, 2024
1 parent e610b84 commit 322b902
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions python/plugins/grassprovider/grass_provider.py
Original file line number Diff line number Diff line change
Expand Up @@ -160,11 +160,11 @@ def supportsNonFileBasedOutput(self):
return False

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
# - There are very chances than OGR version used in GRASS is
# different from QGIS OGR version.
return QgsVectorFileWriter.supportedFormatExtensions()
return super().supportedOutputVectorLayerExtensions()

def supportedOutputRasterLayerExtensions(self):
return GrassUtils.getSupportedOutputRasterExtensions()
Expand Down
2 changes: 1 addition & 1 deletion python/plugins/grassprovider/grass_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -644,7 +644,7 @@ def grassHelpPath():

@staticmethod
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.
# - Chances that GRASS is compiled with another version of
# GDAL than QGIS are very limited!
Expand Down

0 comments on commit 322b902

Please sign in to comment.