From 43b38f27db7ee93be3f1d89cb0ae842c1d5e1a2b Mon Sep 17 00:00:00 2001 From: Gabor Szarnyas Date: Thu, 25 Sep 2025 22:05:42 +0200 Subject: [PATCH] Fix typo --- src/spatial/modules/main/spatial_functions_scalar.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/spatial/modules/main/spatial_functions_scalar.cpp b/src/spatial/modules/main/spatial_functions_scalar.cpp index 456f2a40..d1eef5dc 100644 --- a/src/spatial/modules/main/spatial_functions_scalar.cpp +++ b/src/spatial/modules/main/spatial_functions_scalar.cpp @@ -6092,7 +6092,7 @@ struct ST_Hilbert { static constexpr auto DESCRIPTION = R"( Encodes the X and Y values as the hilbert curve index for a curve covering the given bounding box. If a geometry is provided, the center of the approximate bounding box is used as the point to encode. - If no bounding box is provided, the hilbert curve index is mapped to the full range of a single-presicion float. + If no bounding box is provided, the hilbert curve index is mapped to the full range of a single-precision float. For the BOX_2D and BOX_2DF variants, the center of the box is used as the point to encode. )";