Skip to content

Commit c727342

Browse files
committedJan 27, 2017
Fix spelling and API doc
1 parent b245ccc commit c727342

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed
 

‎python/core/geometry/qgsgeometry.sip

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -755,6 +755,7 @@ class QgsGeometry
755755
* In case of full or partial dimensional collapses, the output geometry may be a collection
756756
* of lower-to-equal dimension geometries or a geometry of lower dimension.
757757
* Single polygons may become multi-geometries in case of self-intersections.
758+
* It preserves Z values, but M values will be dropped.
758759
* @return new valid QgsGeometry or null geometry on error
759760
* @note added in QGIS 3.0
760761
*/

‎src/core/geometry/qgsgeometry.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -810,6 +810,7 @@ class CORE_EXPORT QgsGeometry
810810
* In case of full or partial dimensional collapses, the output geometry may be a collection
811811
* of lower-to-equal dimension geometries or a geometry of lower dimension.
812812
* Single polygons may become multi-geometries in case of self-intersections.
813+
* It preserves Z values, but M values will be dropped.
813814
* @return new valid QgsGeometry or null geometry on error
814815
* @note added in QGIS 3.0
815816
*/

‎src/core/geometry/qgsgeometrymakevalid.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -494,7 +494,7 @@ static GEOSGeometry* LWGEOM_GEOS_makeValidPolygon( const GEOSGeometry* gin, QStr
494494
}
495495

496496
// NOTE: the noding process may drop lines collapsing to points.
497-
// We want to retrive any of those
497+
// We want to retrieve any of those
498498
{
499499
GEOSGeometry* pi;
500500
GEOSGeometry* po;

0 commit comments

Comments
 (0)
Please sign in to comment.