Skip to content

Commit

Permalink
Documentation dyslexia
Browse files Browse the repository at this point in the history
  • Loading branch information
suricactus authored and nyalldawson committed Mar 30, 2020
1 parent c36f711 commit 1c69425
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions python/core/auto_generated/qgsstringstatisticalsummary.sip.in
Expand Up @@ -219,14 +219,14 @@ Returns the mean length of strings.

QString minority() const;
%Docstring
Returns the most common string.
Returns the least common string.

.. versionadded:: 3.14
%End

QString majority() const;
%Docstring
Returns the least common string.
Returns the most common string.

.. versionadded:: 3.14
%End
Expand Down
4 changes: 2 additions & 2 deletions src/core/qgsstringstatisticalsummary.h
Expand Up @@ -198,13 +198,13 @@ class CORE_EXPORT QgsStringStatisticalSummary
double meanLength() const { return mMeanLength; }

/**
* Returns the most common string.
* Returns the least common string.
* \since QGIS 3.14
*/
QString minority() const { return mMinority; }

/**
* Returns the least common string.
* Returns the most common string.
* \since QGIS 3.14
*/
QString majority() const { return mMajority; }
Expand Down

0 comments on commit 1c69425

Please sign in to comment.