Skip to content

Commit

Permalink
Fix typo in QgsFields api doc
Browse files Browse the repository at this point in the history
  • Loading branch information
m-kuhn committed Sep 29, 2017
1 parent 900be9f commit dded657
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions python/core/qgsfields.sip
Expand Up @@ -220,7 +220,7 @@ Get field's origin index (its meaning is specific to each type of origin)
int indexFromName( const QString &fieldName ) const;
%Docstring
Get the field index from the field name.
This method takes is case sensitive and only matches the data source
This method is case sensitive and only matches the data source
name of the field.
Alias for indexOf

Expand All @@ -234,7 +234,7 @@ Get field's origin index (its meaning is specific to each type of origin)
int indexOf( const QString &fieldName ) const;
%Docstring
Get the field index from the field name.
This method takes is case sensitive and only matches the data source
This method is case sensitive and only matches the data source
name of the field.

\param fieldName The name of the field.
Expand Down
4 changes: 2 additions & 2 deletions src/core/qgsfields.h
Expand Up @@ -239,7 +239,7 @@ class CORE_EXPORT QgsFields

/**
* Get the field index from the field name.
* This method takes is case sensitive and only matches the data source
* This method is case sensitive and only matches the data source
* name of the field.
* Alias for indexOf
*
Expand All @@ -252,7 +252,7 @@ class CORE_EXPORT QgsFields

/**
* Get the field index from the field name.
* This method takes is case sensitive and only matches the data source
* This method is case sensitive and only matches the data source
* name of the field.
*
* \param fieldName The name of the field.
Expand Down

0 comments on commit dded657

Please sign in to comment.