Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Nov 7, 2016
1 parent 32b1603 commit 02ea2d7
Show file tree
Hide file tree
Showing 16 changed files with 18 additions and 15 deletions.
2 changes: 1 addition & 1 deletion doc/api_break.dox
Expand Up @@ -21,7 +21,7 @@ This page tries to maintain a list with incompatible changes that happened in pr
QGIS 3.0 {#qgis_api_break_3_0}
========

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

Python 3.0
Expand Down
2 changes: 1 addition & 1 deletion python/analysis/raster/qgsrastercalculator.sip
Expand Up @@ -21,7 +21,7 @@ class QgsRasterCalculator
//! Result of the calculation
enum Result
{
Success, /*!< Calculation sucessful */
Success, /*!< Calculation successful */
CreateOutputError, /*!< Error creating output data file */
InputLayerError, /*!< Error reading input layer */
Cancelled, /*!< User cancelled calculation */
Expand Down
2 changes: 1 addition & 1 deletion python/analysis/vector/qgsgeometrysnapper.sip
Expand Up @@ -2,7 +2,7 @@
* \class QgsGeometrySnapper
* \ingroup analysis
* QgsGeometrySnapper allows a geometry to be snapped to the geometries within a
* different refence layer. Vertices in the geometries will be modified to
* different reference layer. Vertices in the geometries will be modified to
* match the reference layer features within a specified snap tolerance.
* \note added in QGIS 3.0
*/
Expand Down
2 changes: 1 addition & 1 deletion python/core/composer/qgscomposernodesitem.sip
Expand Up @@ -72,7 +72,7 @@ class QgsComposerNodesItem: QgsComposerItem
*/
int selectedNode();

/** Unselect a node.
/** Deselect a node.
*/
void unselectNode();

Expand Down
2 changes: 1 addition & 1 deletion python/core/qgsvectorfilewriter.sip
Expand Up @@ -414,7 +414,7 @@ class QgsVectorFileWriter
static QStringList defaultLayerOptions( const QString& driverName );

/**
* Return edition capabilites for an existing dataset name.
* Return edition capabilities for an existing dataset name.
* @note added in QGIS 3.0
*/
static EditionCapabilities editionCapabilities( const QString& datasetName );
Expand Down
2 changes: 1 addition & 1 deletion python/core/symbology-ng/qgsrendererregistry.sip
Expand Up @@ -111,7 +111,7 @@ class QgsRendererRegistry

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

Expand Down
3 changes: 3 additions & 0 deletions scripts/spelling.dat
Expand Up @@ -192,6 +192,7 @@ extention:extension
failuer:failure
familar:familiar
fatser:faster
feture:feature
fetaures:features
forse:force
fortan:fortran
Expand Down Expand Up @@ -436,6 +437,8 @@ subdirectoires:subdirectories
succesful:successful
succesfully:successfully
sucess:success
sucessful:successful
sucessfully:successfully
superceded:superseded
superflous:superfluous
superseeded:superseded
Expand Down
2 changes: 1 addition & 1 deletion src/analysis/raster/qgsrastercalculator.h
Expand Up @@ -44,7 +44,7 @@ class ANALYSIS_EXPORT QgsRasterCalculator
//! Result of the calculation
enum Result
{
Success = 0, //!< Calculation sucessful
Success = 0, //!< Calculation successful
CreateOutputError = 1, //!< Error creating output data file
InputLayerError = 2, //!< Error reading input layer
Cancelled = 3, //!< User cancelled calculation
Expand Down
2 changes: 1 addition & 1 deletion src/analysis/vector/qgsgeometrysnapper.h
Expand Up @@ -30,7 +30,7 @@ class QgsVectorLayer;
* \class QgsGeometrySnapper
* \ingroup analysis
* QgsGeometrySnapper allows a geometry to be snapped to the geometries within a
* different refence layer. Vertices in the geometries will be modified to
* different reference layer. Vertices in the geometries will be modified to
* match the reference layer features within a specified snap tolerance.
* \note added in QGIS 3.0
*/
Expand Down
2 changes: 1 addition & 1 deletion src/app/qgsmaptoolsimplify.h
Expand Up @@ -76,7 +76,7 @@ class APP_EXPORT QgsMapToolSimplify: public QgsMapToolEdit

void setToleranceUnits( int units );

//! Slot to store feture after simplification
//! Slot to store feature after simplification
void storeSimplified();

void clearSelection();
Expand Down
2 changes: 1 addition & 1 deletion src/core/composer/qgscomposernodesitem.h
Expand Up @@ -111,7 +111,7 @@ class CORE_EXPORT QgsComposerNodesItem: public QgsComposerItem
*/
int selectedNode() { return mSelectedNode; }

/** Unselect a node.
/** Deselect a node.
*/
void unselectNode() { mSelectedNode = -1; }

Expand Down
2 changes: 1 addition & 1 deletion src/core/gps/qgsqtlocationconnection.cpp
Expand Up @@ -40,7 +40,7 @@ QgsQtLocationConnection::~QgsQtLocationConnection()
}

//Needed to make connection detectable (half HACK)
//this signals that the device has started the GPS sucessfully,
//this signals that the device has started the GPS successfully,
//not that it has a fix yet.
void QgsQtLocationConnection::broadcastConnectionAvailable()
{
Expand Down
2 changes: 1 addition & 1 deletion src/core/qgsvectorfilewriter.h
Expand Up @@ -491,7 +491,7 @@ class CORE_EXPORT QgsVectorFileWriter
static OGRwkbGeometryType ogrTypeFromWkbType( QgsWkbTypes::Type type );

/**
* Return edition capabilites for an existing dataset name.
* Return edition capabilities for an existing dataset name.
* @note added in QGIS 3.0
*/
static EditionCapabilities editionCapabilities( const QString& datasetName );
Expand Down
2 changes: 1 addition & 1 deletion src/core/symbology-ng/qgsrendererregistry.h
Expand Up @@ -193,7 +193,7 @@ class CORE_EXPORT QgsRendererRegistry

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

Expand Down
Expand Up @@ -40,7 +40,7 @@
* \class eVisDatabaseConnectionGui
* \brief GUI class for database connections
* This class provides the GUI component for setting up a database connection and making a sql query.
* This class effectively provides access to a wide variety of database types. Upon a sucessful query,
* This class effectively provides access to a wide variety of database types. Upon a successful query,
* the results are stored in a tabdelimited file the loaded into qgis using the demlimitedtext data provider
*/
class eVisDatabaseConnectionGui : public QDialog, private Ui::eVisDatabaseConnectionGuiBase
Expand Down
2 changes: 1 addition & 1 deletion src/ui/qgsorganizetablecolumnsdialog.ui
Expand Up @@ -44,7 +44,7 @@
<item row="2" column="1">
<widget class="QPushButton" name="mHideAllButton">
<property name="text">
<string>Unselect all</string>
<string>Deselect all</string>
</property>
</widget>
</item>
Expand Down

0 comments on commit 02ea2d7

Please sign in to comment.