Skip to content

Commit 6d1d149

Browse files
committed
fix documentation in QgsRectangle
1 parent 932bcfd commit 6d1d149

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

python/core/auto_generated/geometry/qgsrectangle.sip.in

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -229,17 +229,17 @@ Returns true when rectangle contains a point.
229229

230230
void combineExtentWith( const QgsRectangle &rect );
231231
%Docstring
232-
Expand the rectangle so that covers both the original rectangle and the given rectangle.
232+
Expands the rectangle so that its covers both the original rectangle and the given rectangle.
233233
%End
234234

235235
void combineExtentWith( double x, double y );
236236
%Docstring
237-
Expand the rectangle so that covers both the original rectangle and the given point.
237+
Expands the rectangle so that its covers both the original rectangle and the given point.
238238
%End
239239

240240
void combineExtentWith( const QgsPointXY &point );
241241
%Docstring
242-
Expand the rectangle so that covers both the original rectangle and the given point.
242+
Expands the rectangle so that its covers both the original rectangle and the given point.
243243

244244
.. versionadded:: 3.2
245245
%End

src/core/geometry/qgsrectangle.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -219,17 +219,17 @@ class CORE_EXPORT QgsRectangle
219219
bool contains( const QgsPointXY &p ) const;
220220

221221
/**
222-
* Expand the rectangle so that covers both the original rectangle and the given rectangle.
222+
* Expands the rectangle so that its covers both the original rectangle and the given rectangle.
223223
*/
224224
void combineExtentWith( const QgsRectangle &rect );
225225

226226
/**
227-
* Expand the rectangle so that covers both the original rectangle and the given point.
227+
* Expands the rectangle so that its covers both the original rectangle and the given point.
228228
*/
229229
void combineExtentWith( double x, double y );
230230

231231
/**
232-
* Expand the rectangle so that covers both the original rectangle and the given point.
232+
* Expands the rectangle so that its covers both the original rectangle and the given point.
233233
* \since QGIS 3.2
234234
*/
235235
void combineExtentWith( const QgsPointXY &point );

0 commit comments

Comments
 (0)