Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
spelling fixes
  • Loading branch information
3nids committed Dec 15, 2016
1 parent 90fc0bb commit 2ffe1a7
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion python/core/qgsactionscoperegistry.sip
Expand Up @@ -38,7 +38,7 @@ class QgsActionScopeRegistry : QObject
/**
* Create a new QgsActionScopeRegistry.
* QGIS already creates a central registry. You will normally
* want to use QgsApplication::actionScopeRegistry() to get acess
* want to use QgsApplication::actionScopeRegistry() to get access
* to that one instead.
*
* @note Added in QGIS 3.0
Expand Down
2 changes: 1 addition & 1 deletion python/core/qgstaskmanager.sip
Expand Up @@ -120,7 +120,7 @@ class QgsTask : QObject
* Subtasks can have an optional list of dependent tasks, which must be completed
* before the subtask can begin. By default subtasks are considered independent
* of the parent task, ie they can be run either before, after, or at the same
* time as the parent task. This behaviour can be overriden through the subTaskDependency
* time as the parent task. This behaviour can be overridden through the subTaskDependency
* argument.
*
* The parent task must be added to a QgsTaskManager for subtasks to be utilised.
Expand Down
2 changes: 1 addition & 1 deletion python/core/symbology-ng/qgsstyle.sip
Expand Up @@ -263,7 +263,7 @@ class QgsStyle : QObject
*/
QStringList tagsOfSymbol( StyleEntity type, const QString& symbol );

/** Returns wheter a given tag is associated with the symbol
/** Returns whether a given tag is associated with the symbol
*
* \param type is either SymbolEntity or ColorrampEntity
* \param symbol is the name of the symbol or color ramp
Expand Down
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/qgis/SplitLinesWithLines.py
Expand Up @@ -56,7 +56,7 @@ def defineCharacteristics(self):
self.addParameter(ParameterVector(self.INPUT_B,
self.tr('Split layer'), [dataobjects.TYPE_VECTOR_LINE]))

self.addOutput(OutputVector(self.OUTPUT, self.tr('Splitted'), datatype=[dataobjects.TYPE_VECTOR_LINE]))
self.addOutput(OutputVector(self.OUTPUT, self.tr('Split'), datatype=[dataobjects.TYPE_VECTOR_LINE]))

def processAlgorithm(self, progress):
layerA = dataobjects.getObjectFromUri(self.getParameterValue(self.INPUT_A))
Expand Down
2 changes: 1 addition & 1 deletion src/core/qgsactionscoperegistry.h
Expand Up @@ -44,7 +44,7 @@ class CORE_EXPORT QgsActionScopeRegistry : public QObject
/**
* Create a new QgsActionScopeRegistry.
* QGIS already creates a central registry. You will normally
* want to use QgsApplication::actionScopeRegistry() to get acess
* want to use QgsApplication::actionScopeRegistry() to get access
* to that one instead.
*
* @note Added in QGIS 3.0
Expand Down
2 changes: 1 addition & 1 deletion src/core/qgstaskmanager.h
Expand Up @@ -151,7 +151,7 @@ class CORE_EXPORT QgsTask : public QObject
* Subtasks can have an optional list of dependent tasks, which must be completed
* before the subtask can begin. By default subtasks are considered independent
* of the parent task, ie they can be run either before, after, or at the same
* time as the parent task. This behaviour can be overriden through the subTaskDependency
* time as the parent task. This behaviour can be overridden through the subTaskDependency
* argument. Note that subtasks should NEVER be dependent on their parent task, and violating
* this constraint will prevent the task from completing successfully.
*
Expand Down
2 changes: 1 addition & 1 deletion src/core/symbology-ng/qgsstyle.h
Expand Up @@ -333,7 +333,7 @@ class CORE_EXPORT QgsStyle : public QObject
*/
QStringList tagsOfSymbol( StyleEntity type, const QString& symbol );

/** Returns wheter a given tag is associated with the symbol
/** Returns whether a given tag is associated with the symbol
*
* \param type is either SymbolEntity or ColorrampEntity
* \param symbol is the name of the symbol or color ramp
Expand Down
2 changes: 1 addition & 1 deletion src/ui/qgsdwgimportbase.ui
Expand Up @@ -91,7 +91,7 @@
<item>
<widget class="QPushButton" name="pbDeselectAll">
<property name="text">
<string>Unselect all</string>
<string>Deselect all</string>
</property>
</widget>
</item>
Expand Down
2 changes: 1 addition & 1 deletion tests/src/python/test_provider_postgres.py
Expand Up @@ -548,7 +548,7 @@ def testVectorLayerUtilsCreateFeatureWithProviderDefault(self):
default_clause = 'nextval(\'qgis_test."someData_pk_seq"\'::regclass)'
self.assertEqual(vl.dataProvider().defaultValueClause(0), default_clause)

# check that provider default clause takes precendence over passed attribute values
# check that provider default clause takes precedence over passed attribute values
# this also checks that the inbuilt unique constraint handling is bypassed in the case of a provider default clause
f = QgsVectorLayerUtils.createFeature(vl, attributes={1: 5, 3: 'map'})
self.assertEqual(f.attributes(), [default_clause, 5, "'qgis'::text", "'qgis'::text", None, None])
Expand Down
2 changes: 1 addition & 1 deletion tests/src/python/test_qgsvectorcolorramp.py
Expand Up @@ -161,7 +161,7 @@ def testQgsVectorGradientRampV2(self):
self.assertEqual(s[3].offset, 0.8)
self.assertEqual(s[3].color, QColor(50, 20, 10))

# test continous invert function
# test continuous invert function
r.invert()
self.assertEqual(r.color(0), QColor(0, 200, 0))
self.assertEqual(r.color(1), QColor(200, 0, 0))
Expand Down

0 comments on commit 2ffe1a7

Please sign in to comment.