Skip to content

Commit

Permalink
Fix typo in Contains doc comment
Browse files Browse the repository at this point in the history
  • Loading branch information
peterstace committed Oct 2, 2024
1 parent e9a06c6 commit 42d3140
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion geom/alg_relate.go
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ func Touches(a, b Geometry) (bool, error) {
// 1. No points of B lies on the exterior of geometry A. That is, B must only
// be in the exterior or boundary of A.
//
// 2 .At least one point of the interior of B lies on the interior of A. That
// 2. At least one point of the interior of B lies on the interior of A. That
// is, they can't *only* intersect at their boundaries.
func Contains(a, b Geometry) (bool, error) {
return relateMatchesAnyPattern(a, b, "T*****FF*")
Expand Down

0 comments on commit 42d3140

Please sign in to comment.