Skip to content

Commit 02ea2d7

Browse files
committedNov 7, 2016
Fix typos
1 parent 32b1603 commit 02ea2d7

File tree

16 files changed

+18
-15
lines changed

16 files changed

+18
-15
lines changed
 

‎doc/api_break.dox

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ This page tries to maintain a list with incompatible changes that happened in pr
2121
QGIS 3.0 {#qgis_api_break_3_0}
2222
========
2323

24-
Version 3.0 brings changes to many underlying dependancies which QGIS is built upon. Any existing PyQGIS code will
24+
Version 3.0 brings changes to many underlying dependencies which QGIS is built upon. Any existing PyQGIS code will
2525
need to be updated to address the changes made within these libraries.
2626

2727
Python 3.0

‎python/analysis/raster/qgsrastercalculator.sip

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class QgsRasterCalculator
2121
//! Result of the calculation
2222
enum Result
2323
{
24-
Success, /*!< Calculation sucessful */
24+
Success, /*!< Calculation successful */
2525
CreateOutputError, /*!< Error creating output data file */
2626
InputLayerError, /*!< Error reading input layer */
2727
Cancelled, /*!< User cancelled calculation */

‎python/analysis/vector/qgsgeometrysnapper.sip

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* \class QgsGeometrySnapper
33
* \ingroup analysis
44
* QgsGeometrySnapper allows a geometry to be snapped to the geometries within a
5-
* different refence layer. Vertices in the geometries will be modified to
5+
* different reference layer. Vertices in the geometries will be modified to
66
* match the reference layer features within a specified snap tolerance.
77
* \note added in QGIS 3.0
88
*/

‎python/core/composer/qgscomposernodesitem.sip

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ class QgsComposerNodesItem: QgsComposerItem
7272
*/
7373
int selectedNode();
7474

75-
/** Unselect a node.
75+
/** Deselect a node.
7676
*/
7777
void unselectNode();
7878

‎python/core/qgsvectorfilewriter.sip

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -414,7 +414,7 @@ class QgsVectorFileWriter
414414
static QStringList defaultLayerOptions( const QString& driverName );
415415

416416
/**
417-
* Return edition capabilites for an existing dataset name.
417+
* Return edition capabilities for an existing dataset name.
418418
* @note added in QGIS 3.0
419419
*/
420420
static EditionCapabilities editionCapabilities( const QString& datasetName );

‎python/core/symbology-ng/qgsrendererregistry.sip

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ class QgsRendererRegistry
111111

112112
//! Removes a renderer from registry.
113113
//! @param rendererName name of renderer to remove from registry
114-
//! @returns true if renderer was sucessfully removed, or false if matching
114+
//! @returns true if renderer was successfully removed, or false if matching
115115
//! renderer could not be found
116116
bool removeRenderer( const QString& rendererName );
117117

‎scripts/spelling.dat

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -192,6 +192,7 @@ extention:extension
192192
failuer:failure
193193
familar:familiar
194194
fatser:faster
195+
feture:feature
195196
fetaures:features
196197
forse:force
197198
fortan:fortran
@@ -436,6 +437,8 @@ subdirectoires:subdirectories
436437
succesful:successful
437438
succesfully:successfully
438439
sucess:success
440+
sucessful:successful
441+
sucessfully:successfully
439442
superceded:superseded
440443
superflous:superfluous
441444
superseeded:superseded

‎src/analysis/raster/qgsrastercalculator.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ class ANALYSIS_EXPORT QgsRasterCalculator
4444
//! Result of the calculation
4545
enum Result
4646
{
47-
Success = 0, //!< Calculation sucessful
47+
Success = 0, //!< Calculation successful
4848
CreateOutputError = 1, //!< Error creating output data file
4949
InputLayerError = 2, //!< Error reading input layer
5050
Cancelled = 3, //!< User cancelled calculation

‎src/analysis/vector/qgsgeometrysnapper.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ class QgsVectorLayer;
3030
* \class QgsGeometrySnapper
3131
* \ingroup analysis
3232
* QgsGeometrySnapper allows a geometry to be snapped to the geometries within a
33-
* different refence layer. Vertices in the geometries will be modified to
33+
* different reference layer. Vertices in the geometries will be modified to
3434
* match the reference layer features within a specified snap tolerance.
3535
* \note added in QGIS 3.0
3636
*/

‎src/app/qgsmaptoolsimplify.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ class APP_EXPORT QgsMapToolSimplify: public QgsMapToolEdit
7676

7777
void setToleranceUnits( int units );
7878

79-
//! Slot to store feture after simplification
79+
//! Slot to store feature after simplification
8080
void storeSimplified();
8181

8282
void clearSelection();

‎src/core/composer/qgscomposernodesitem.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ class CORE_EXPORT QgsComposerNodesItem: public QgsComposerItem
111111
*/
112112
int selectedNode() { return mSelectedNode; }
113113

114-
/** Unselect a node.
114+
/** Deselect a node.
115115
*/
116116
void unselectNode() { mSelectedNode = -1; }
117117

‎src/core/gps/qgsqtlocationconnection.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ QgsQtLocationConnection::~QgsQtLocationConnection()
4040
}
4141

4242
//Needed to make connection detectable (half HACK)
43-
//this signals that the device has started the GPS sucessfully,
43+
//this signals that the device has started the GPS successfully,
4444
//not that it has a fix yet.
4545
void QgsQtLocationConnection::broadcastConnectionAvailable()
4646
{

‎src/core/qgsvectorfilewriter.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -491,7 +491,7 @@ class CORE_EXPORT QgsVectorFileWriter
491491
static OGRwkbGeometryType ogrTypeFromWkbType( QgsWkbTypes::Type type );
492492

493493
/**
494-
* Return edition capabilites for an existing dataset name.
494+
* Return edition capabilities for an existing dataset name.
495495
* @note added in QGIS 3.0
496496
*/
497497
static EditionCapabilities editionCapabilities( const QString& datasetName );

‎src/core/symbology-ng/qgsrendererregistry.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ class CORE_EXPORT QgsRendererRegistry
193193

194194
//! Removes a renderer from registry.
195195
//! @param rendererName name of renderer to remove from registry
196-
//! @returns true if renderer was sucessfully removed, or false if matching
196+
//! @returns true if renderer was successfully removed, or false if matching
197197
//! renderer could not be found
198198
bool removeRenderer( const QString& rendererName );
199199

‎src/plugins/evis/databaseconnection/evisdatabaseconnectiongui.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
* \class eVisDatabaseConnectionGui
4141
* \brief GUI class for database connections
4242
* This class provides the GUI component for setting up a database connection and making a sql query.
43-
* This class effectively provides access to a wide variety of database types. Upon a sucessful query,
43+
* This class effectively provides access to a wide variety of database types. Upon a successful query,
4444
* the results are stored in a tabdelimited file the loaded into qgis using the demlimitedtext data provider
4545
*/
4646
class eVisDatabaseConnectionGui : public QDialog, private Ui::eVisDatabaseConnectionGuiBase

‎src/ui/qgsorganizetablecolumnsdialog.ui

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
<item row="2" column="1">
4545
<widget class="QPushButton" name="mHideAllButton">
4646
<property name="text">
47-
<string>Unselect all</string>
47+
<string>Deselect all</string>
4848
</property>
4949
</widget>
5050
</item>

0 commit comments

Comments
 (0)
Please sign in to comment.