Skip to content

Commit

Permalink
Spelling: use vertices rather than vertexes
Browse files Browse the repository at this point in the history
... because that's what's used almost consistently throughout the codebase.
  • Loading branch information
m-kuhn authored and 3nids committed Oct 9, 2017
1 parent ac66ced commit 6b418de
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion python/core/geometry/qgsabstractgeometry.sip
Expand Up @@ -395,7 +395,7 @@ Returns the centroid of the geometry

virtual int vertexCount( int part = 0, int ring = 0 ) const = 0;
%Docstring
Returns the number of vertexes of which this geometry is built.
Returns the number of vertices of which this geometry is built.
:rtype: int
%End

Expand Down
1 change: 1 addition & 0 deletions scripts/spell_check/spelling.dat
Expand Up @@ -7399,6 +7399,7 @@ versitlity:versatility
verson:version
versoned:versioned
versons:versions
vertexes:vertices
verticaly:vertically
verticies:vertices
veryified:verified
Expand Down
4 changes: 2 additions & 2 deletions src/app/nodetool/qgsselectedfeature.h
Expand Up @@ -67,7 +67,7 @@ class QgsSelectedFeature: public QObject
void deselectVertex( int vertexNr );

/**
* Deselects all vertexes of selected feature
* Deselects all vertices of selected feature
*/
void deselectAllVertexes();

Expand Down Expand Up @@ -97,7 +97,7 @@ class QgsSelectedFeature: public QObject
QgsFeatureId featureId();

/**
* Getting vertex map of vertexes
* Getting vertex map of vertices
* \returns currently used vertex map
*/
QList<QgsVertexEntry *> &vertexMap();
Expand Down
2 changes: 1 addition & 1 deletion src/core/geometry/qgsabstractgeometry.h
Expand Up @@ -402,7 +402,7 @@ class CORE_EXPORT QgsAbstractGeometry
virtual double vertexAngle( QgsVertexId vertex ) const = 0;

/**
* Returns the number of vertexes of which this geometry is built.
* Returns the number of vertices of which this geometry is built.
*/
virtual int vertexCount( int part = 0, int ring = 0 ) const = 0;

Expand Down

0 comments on commit 6b418de

Please sign in to comment.