From 82e212fb443802c6946f2ffeec81a3c0d8fdc76e Mon Sep 17 00:00:00 2001 From: Michael Kirk Date: Wed, 11 Dec 2024 12:36:50 -0800 Subject: [PATCH] Update geo/src/algorithm/validation/geometry.rs Co-authored-by: Corey Farwell --- geo/src/algorithm/validation/geometry.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/geo/src/algorithm/validation/geometry.rs b/geo/src/algorithm/validation/geometry.rs index 34d3fc143..c7c7cb78a 100644 --- a/geo/src/algorithm/validation/geometry.rs +++ b/geo/src/algorithm/validation/geometry.rs @@ -9,7 +9,7 @@ use crate::{GeoFloat, Geometry}; use crate::geometry_cow::GeometryCow; use std::fmt; -/// A [`Geometry`] is valid if it's inner variant is valid. +/// A [`Geometry`] is valid if its inner variant is valid. /// e.g. `Geometry::Polygon(polygon)` is valid if and only if `polygon` is valid. #[derive(Debug, Clone, PartialEq)] pub enum InvalidGeometry {