aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuilhem Moulin <guilhem@fripost.org>2026-03-05 22:59:32 +0100
committerGuilhem Moulin <guilhem@fripost.org>2026-03-05 22:59:32 +0100
commit809059c08eae1723b82a0acfe459a71956148d37 (patch)
tree771ac76554fbf18d0fbf6a958bd3a6bb424f1544
parentf05c3b6ff75832b2da2690c92b6c5fb12e700be8 (diff)
typofix
-rw-r--r--schema.sql4
1 files changed, 2 insertions, 2 deletions
diff --git a/schema.sql b/schema.sql
index 02a29e2..2384624 100644
--- a/schema.sql
+++ b/schema.sql
@@ -235,7 +235,7 @@ CREATE FUNCTION lm_topo250.get_counties(public.geometry) RETURNS smallint[]
AS $_$
SELECT array_agg(DISTINCT t.lanskod ORDER BY t.lanskod)
FROM lm_topo250.lansyta_sub t
- -- Make use of spactial indices: filter out non-overlapping envelopes first.
+ -- Make use of spatial indices: filter out non-overlapping envelopes first.
-- This function works for curves and points too, as the interior of a curve
-- is the set of points between its endpoints, and the interior of a point is
-- the point itself. It also works for 3D input geometries (in that case the
@@ -257,7 +257,7 @@ CREATE FUNCTION lm_topo250.get_municipalities(public.geometry) RETURNS smallint[
AS $_$
SELECT array_agg(DISTINCT t.kommunkod ORDER BY t.kommunkod)
FROM lm_topo250.kommunyta_sub t
- -- Make use of spactial indices: filter out non-overlapping envelopes first.
+ -- Make use of spatial indices: filter out non-overlapping envelopes first.
-- This function works for curves and points too, as the interior of a curve
-- is the set of points between its endpoints, and the interior of a point is
-- the point itself. It also works for 3D input geometries (in that case the