Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
3nids committed Oct 26, 2018
1 parent 9e6d165 commit 4ba77f8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -238,7 +238,7 @@ Returns the ``CadConstraint`` on the X coordinate
%End
const CadConstraint *constraintY() const;
%Docstring
Retruns the ``CadConstraint`` on the Y coordinate
Returns the ``CadConstraint`` on the Y coordinate
%End
bool commonAngleConstraint() const;
%Docstring
Expand Down
2 changes: 1 addition & 1 deletion src/gui/qgsadvanceddigitizingdockwidget.h
Expand Up @@ -255,7 +255,7 @@ class GUI_EXPORT QgsAdvancedDigitizingDockWidget : public QgsDockWidget, private
const CadConstraint *constraintDistance() const { return mDistanceConstraint.get(); }
//! Returns the \a CadConstraint on the X coordinate
const CadConstraint *constraintX() const { return mXConstraint.get(); }
//! Retruns the \a CadConstraint on the Y coordinate
//! Returns the \a CadConstraint on the Y coordinate
const CadConstraint *constraintY() const { return mYConstraint.get(); }
//! Returns true if a constraint on a common angle is active
bool commonAngleConstraint() const { return !qgsDoubleNear( mCommonAngleConstraint, 0.0 ); }
Expand Down

0 comments on commit 4ba77f8

Please sign in to comment.