Navigation Menu

Skip to content

Commit

Permalink
@return -> \returns
Browse files Browse the repository at this point in the history
  • Loading branch information
lbartoletti committed Oct 3, 2017
1 parent 81b096c commit 74e1221
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions python/core/geometry/qgstriangle.sip
Expand Up @@ -388,7 +388,7 @@ Inherited method not used. You cannot delete or insert a vertex directly. Return
QgsCircle circumscribedCircle() const;
%Docstring
Circumscribed circle of the triangle.
@return The circumbscribed of the triangle with a QgsCircle.
:return: The circumbscribed of the triangle with a QgsCircle.
An empty circle is returned for empty or invalid triangle.
Example:
\code{.py}
Expand Down Expand Up @@ -448,7 +448,7 @@ Inherited method not used. You cannot delete or insert a vertex directly. Return
QgsCircle inscribedCircle() const;
%Docstring
Inscribed circle of the triangle.
@return The inscribed of the triangle with a QgsCircle.
:return: The inscribed of the triangle with a QgsCircle.
An empty circle is returned for empty or invalid triangle.
Example:
\code{.py}
Expand Down
4 changes: 2 additions & 2 deletions src/core/geometry/qgstriangle.h
Expand Up @@ -367,7 +367,7 @@ class CORE_EXPORT QgsTriangle : public QgsPolygonV2

/**
* Circumscribed circle of the triangle.
* @return The circumbscribed of the triangle with a QgsCircle.
* \returns The circumbscribed of the triangle with a QgsCircle.
* An empty circle is returned for empty or invalid triangle.
* Example:
* \code{.py}
Expand Down Expand Up @@ -424,7 +424,7 @@ class CORE_EXPORT QgsTriangle : public QgsPolygonV2

/**
* Inscribed circle of the triangle.
* @return The inscribed of the triangle with a QgsCircle.
* \returns The inscribed of the triangle with a QgsCircle.
* An empty circle is returned for empty or invalid triangle.
* Example:
* \code{.py}
Expand Down

0 comments on commit 74e1221

Please sign in to comment.