From 2e4ab6dd91d29c47faff2a41333f44cccf711d7a Mon Sep 17 00:00:00 2001 From: Ning Sun Date: Sat, 31 Aug 2024 10:28:20 -0700 Subject: [PATCH] doc: correct h3 comment --- src/common/function/src/scalars/geo/h3.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/function/src/scalars/geo/h3.rs b/src/common/function/src/scalars/geo/h3.rs index 7248633e10..aa918e0723 100644 --- a/src/common/function/src/scalars/geo/h3.rs +++ b/src/common/function/src/scalars/geo/h3.rs @@ -28,7 +28,7 @@ use snafu::{ensure, ResultExt}; use crate::function::{Function, FunctionContext}; -/// Function that return geohash string for a given geospatial coordinate. +/// Function that return h3 encoding string for a given geospatial coordinate. #[derive(Clone, Debug, Default)] pub struct H3Function;